Advertisement
Guest User

Untitled

a guest
Oct 10th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #import "ViewController.h"
  2.  
  3. @implementation MyNSView
  4. - (void)drawString:(NSString*)nsstring withPoint:(NSPoint)nspoint {
  5.     CTTextAlignment alignment = kCTTextAlignmentLeft;
  6.     CTParagraphStyleSetting actParagraphStyleSetting[] = {{ kCTParagraphStyleSpecifierAlignment, sizeof(CTTextAlignment), &alignment }};
  7.     CTParagraphStyleRef cfParagraphStyleRef = CTParagraphStyleCreate(actParagraphStyleSetting, 1);
  8.     void* keys[] = {/*(void*)kCTParagraphStyleAttributeName, */(void*)kCTFontAttributeName};
  9.     void* vals[] = {/*(void*)cfParagraphStyleRef, */(void*)(__bridge CTFontRef)[NSFont messageFontOfSize:0]};
  10.     CTFramesetterRef cfFramesetterRef = CTFramesetterCreateWithAttributedString(
  11.         CFAttributedStringCreate(
  12.             kCFAllocatorDefault,
  13.             (__bridge CFStringRef)nsstring,
  14.             CFDictionaryCreate(
  15.                 kCFAllocatorDefault,
  16.                 (void const**)keys,
  17.                 (void const**)vals,
  18.                 1,
  19.                 &kCFCopyStringDictionaryKeyCallBacks,
  20.                 &kCFTypeDictionaryValueCallBacks
  21.             )
  22.         )
  23.     );
  24.  
  25.     CFRange cfrangeFit;
  26.     CGSize szrndcrd = CTFramesetterSuggestFrameSizeWithConstraints(cfFramesetterRef, CFRangeMake(0, [nsstring length]), nil, CGSizeMake(CGFLOAT_MAX, CGFLOAT_MAX), &cfrangeFit);
  27.    
  28.     CTFrameRef cfFrameRef = CTFramesetterCreateFrame(
  29.         cfFramesetterRef,
  30.         CFRangeMake(0, [nsstring length]),
  31.         CGPathCreateWithRect(CGRectMake(nspoint.x, nspoint.y, szrndcrd.width, szrndcrd.height), nil),
  32.         nil
  33.     );
  34.     (CTFrameDraw(cfFrameRef, [[NSGraphicsContext currentContext] CGContext]));
  35. }
  36.  
  37. - (void)drawRect:(NSRect)dirtyRect {
  38.     [self drawString:@"E\u2259" withPoint:CGPointMake(10, 10)];
  39.     [self drawString:@"E" withPoint:CGPointMake(30, 10)];
  40.     [self drawString:@"\u2259" withPoint:CGPointMake(40, 10)];
  41. }
  42. @end
  43.  
  44. @implementation ViewController
  45.  
  46. - (void)viewDidLoad {
  47.     [super viewDidLoad];
  48.  
  49.     // Do any additional setup after loading the view.
  50. }
  51.  
  52.  
  53. - (void)setRepresentedObject:(id)representedObject {
  54.     [super setRepresentedObject:representedObject];
  55.  
  56.     // Update the view, if already loaded.
  57. }
  58.  
  59.  
  60. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement