如何在 iPhone 上设置 NSAtributedString 的字体。我在网上找到了如何为mac做,但它不一样。当我试图将其转换为 iOS 平台时,它不起作用。我需要设置字体名称和字体大小。
NSDictionary *attributes = [[NSDictionary alloc] initWithObjectsAndKeys:
[UIFont fontWithName:@"Helvetica" size:26], kCTFontAttributeName,
[UIColor blackColor], kCTForegroundColorAttributeName, nil];