版本记录
版本号 | 时间 |
---|---|
V1.0 | 2018.03.31 |
前言
iOS圈内有几个人大家基本都知道,比如说王巍、唐巧,还有YYKit框架的作者现任职于滴滴的郭曜源 - ibireme等。这里有一篇唐巧对他的专访,还有他的 GitHub - Yaoyuan 和 博客,这里贴出来框架YYKit 框架。接下来几篇我们就一起来看一下这个框架。感兴趣的可以看上面写的几篇。
1. YYKit源码探究(一) —— 基本概览
2. YYKit源码探究(二) —— NSString分类之Hash(一)
3. YYKit源码探究(三) —— NSString分类之Encode and decode(二)
4. YYKit源码探究(四) —— NSString分类之Drawing(三)
5. YYKit源码探究(五) —— NSString分类之Regular Expression(四)
6. YYKit源码探究(六) —— NSString分类之NSNumber Compatible(五)
7. YYKit源码探究(七) —— NSString分类之Utilities(六)
8. YYKit源码探究(八) —— NSNumber分类(一)
9. YYKit源码探究(九) —— UIFont分类之架构分析和Font Traits(一)
10. YYKit源码探究(十) —— UIFont分类之Create font(二)
11. YYKit源码探究(十一) —— UIFont分类之Load and unload font(三)
12. YYKit源码探究(十二) —— UIFont分类之Dump font data(四)
13. YYKit源码探究(十三) —— UIImage分类之框架结构和Create image部分(一)
14. YYKit源码探究(十四) —— UIImage分类之Image Info(二)
15. YYKit源码探究(十五) —— UIImage分类之Modify Image(三)
16. YYKit源码探究(十六) —— UIImage分类之Image Effect(四)
17. YYKit源码探究(十七) —— UIImageView分类之架构和image部分(一)
18. YYKit源码探究(十八) —— UIImageView分类之highlight image部分(二)
19. YYKit源码探究(十九) —— UIScreen分类(一)
20. YYKit源码探究(二十) —— UIScrollView分类(一)
21. YYKit源码探究(二十一) —— UITableView分类(一)
22. YYKit源码探究(二十二) —— UITextField分类(一)
23. YYKit源码探究(二十三) —— UIView分类(一)
24. YYKit源码探究(二十四) —— UIPasteboard分类(一)
25. YYKit源码探究(二十五) —— UIGestureRecognizer分类(一)
26. YYKit源码探究(二十六) —— UIDevice分类框架及Device Information(一)
27. YYKit源码探究(二十七) —— UIDevice分类之Network Information(二)
28. YYKit源码探究(二十八) —— UIDevice分类之Disk Space(三)
29. YYKit源码探究(二十九) —— UIDevice分类之Memory Information(四)
30. YYKit源码探究(三十) —— UIDevice分类之CPU Information(五)
31. YYKit源码探究(三十一) —— UIControl分类(一)
32. YYKit源码探究(三十二) —— UIColor分类之Create a UIColor Object(一)
33. YYKit源码探究(三十三) —— UIColor分类之Get color's description(二)
34. YYKit源码探究(三十四) —— UIColor分类之Retrieving Color Information(三)
35. YYKit源码探究(三十五) —— UIButton分类之image(一)
36. YYKit源码探究(三十六) —— UIButton分类之background image(二)
37. YYKit源码探究(三十七) —— UIBezierPath分类(一)
38. YYKit源码探究(三十八) —— UIBarButtonItem分类(一)
39. YYKit源码探究(三十九) —— UIApplication分类(一)
40. YYKit源码探究(四十) —— NSTimer分类(一)
41. YYKit源码探究(四十一) —— NSParagraphStyle分类(一)
42. YYKit源码探究(四十二) —— NSObject分类之YYModel(一)
43. YYKit源码探究(四十三) —— NSObject分类之KVO(二)
44. YYKit源码探究(四十四) —— NSObject分类之Sending messages with variable parameters(三)
45. YYKit源码探究(四十五) —— NSObject分类之Swap method (Swizzling)(四)
46. YYKit源码探究(四十六) —— NSObject分类之Associate value(五)
47. YYKit源码探究(四十七) —— NSObject分类之Other(六)
48. YYKit源码探究(四十八) —— NSNotificationCenter分类(一)
49. YYKit源码探究(四十九) —— NSKeyedUnarchiver分类(一)
50. YYKit源码探究(五十) —— NSDictionary分类之Dictionary Convertor(一)
51. YYKit源码探究(五十一) —— NSDictionary分类之Dictionary Value Getter(二)
52. YYKit源码探究(五十二) —— NSDictionary分类之NSMutableDictionary(三)
53. YYKit源码探究(五十三) —— NSDate分类之Component Properties(一)
54. YYKit源码探究(五十四) —— NSDate分类之Date modify(二)
55. YYKit源码探究(五十五) —— NSDate分类之Date Format(三)
56. YYKit源码探究(五十六) —— NSData分类之Hash(一)
57. YYKit源码探究(五十七) —— NSData分类之Encrypt and Decrypt(二)
58. YYKit源码探究(五十八) —— NSData分类之Encode and decode(三)
59. YYKit源码探究(五十九) —— NSData分类之Inflate and deflate(四)
60. YYKit源码探究(六十) —— NSData分类之Others(五)
61. YYKit源码探究(六十一) —— NSBundle分类(一)
62. YYKit源码探究(六十二) —— NSAttributedString分类之基本(一)
63. YYKit源码探究(六十三) —— NSAttributedString分类之Retrieving character attribute information(二)
回顾
上一篇主要介绍了NSAttributedString
分类的Retrieving character attribute information
部分,这一篇主要看一下NSAttributedString
分类的Get character attribute as property
部分。
API
下面我们看一下API
/**
The font of the text. (read-only)
@discussion Default is Helvetica (Neue) 12.
@discussion Get this property returns the first character's attribute.
@since CoreText:3.2 UIKit:6.0 YYKit:6.0
*/
@property (nullable, nonatomic, strong, readonly) UIFont *font;
- (nullable UIFont *)fontAtIndex:(NSUInteger)index;
/**
A kerning adjustment. (read-only)
@discussion Default is standard kerning. The kerning attribute indicate how many
points the following character should be shifted from its default offset as
defined by the current character's font in points; a positive kern indicates a
shift farther along and a negative kern indicates a shift closer to the current
character. If this attribute is not present, standard kerning will be used.
If this attribute is set to 0.0, no kerning will be done at all.
@discussion Get this property returns the first character's attribute.
@since CoreText:3.2 UIKit:6.0 YYKit:6.0
*/
@property (nullable, nonatomic, strong, readonly) NSNumber *kern;
- (nullable NSNumber *)kernAtIndex:(NSUInteger)index;
/**
The foreground color. (read-only)
@discussion Default is Black.
@discussion Get this property returns the first character's attribute.
@since CoreText:3.2 UIKit:6.0 YYKit:6.0
*/
@property (nullable, nonatomic, strong, readonly) UIColor *color;
- (nullable UIColor *)colorAtIndex:(NSUInteger)index;
/**
The background color. (read-only)
@discussion Default is nil (or no background).
@discussion Get this property returns the first character's attribute.
@since UIKit:6.0
*/
@property (nullable, nonatomic, strong, readonly) UIColor *backgroundColor;
- (nullable UIColor *)backgroundColorAtIndex:(NSUInteger)index;
/**
The stroke width. (read-only)
@discussion Default value is 0.0 (no stroke). This attribute, interpreted as
a percentage of font point size, controls the text drawing mode: positive
values effect drawing with stroke only; negative values are for stroke and fill.
A typical value for outlined text is 3.0.
@discussion Get this property returns the first character's attribute.
@since CoreText:3.2 UIKit:6.0
*/
@property (nullable, nonatomic, strong, readonly) NSNumber *strokeWidth;
- (nullable NSNumber *)strokeWidthAtIndex:(NSUInteger)index;
/**
The stroke color. (read-only)
@discussion Default value is nil (same as foreground color).
@discussion Get this property returns the first character's attribute.
@since CoreText:3.2 UIKit:6.0
*/
@property (nullable, nonatomic, strong, readonly) UIColor *strokeColor;
- (nullable UIColor *)strokeColorAtIndex:(NSUInteger)index;
/**
The text shadow. (read-only)
@discussion Default value is nil (no shadow).
@discussion Get this property returns the first character's attribute.
@since UIKit:6.0 YYKit:6.0
*/
@property (nullable, nonatomic, strong, readonly) NSShadow *shadow;
- (nullable NSShadow *)shadowAtIndex:(NSUInteger)index;
/**
The strikethrough style. (read-only)
@discussion Default value is NSUnderlineStyleNone (no strikethrough).
@discussion Get this property returns the first character's attribute.
@since UIKit:6.0
*/
@property (nonatomic, readonly) NSUnderlineStyle strikethroughStyle;
- (NSUnderlineStyle)strikethroughStyleAtIndex:(NSUInteger)index;
/**
The strikethrough color. (read-only)
@discussion Default value is nil (same as foreground color).
@discussion Get this property returns the first character's attribute.
@since UIKit:7.0
*/
@property (nullable, nonatomic, strong, readonly) UIColor *strikethroughColor;
- (nullable UIColor *)strikethroughColorAtIndex:(NSUInteger)index;
/**
The underline style. (read-only)
@discussion Default value is NSUnderlineStyleNone (no underline).
@discussion Get this property returns the first character's attribute.
@since CoreText:3.2 UIKit:6.0
*/
@property (nonatomic, readonly) NSUnderlineStyle underlineStyle;
- (NSUnderlineStyle)underlineStyleAtIndex:(NSUInteger)index;
/**
The underline color. (read-only)
@discussion Default value is nil (same as foreground color).
@discussion Get this property returns the first character's attribute.
@since CoreText:3.2 UIKit:7.0
*/
@property (nullable, nonatomic, strong, readonly) UIColor *underlineColor;
- (nullable UIColor *)underlineColorAtIndex:(NSUInteger)index;
/**
Ligature formation control. (read-only)
@discussion Default is int value 1. The ligature attribute determines what kinds
of ligatures should be used when displaying the string. A value of 0 indicates
that only ligatures essential for proper rendering of text should be used,
1 indicates that standard ligatures should be used, and 2 indicates that all
available ligatures should be used. Which ligatures are standard depends on the
script and possibly the font.
@discussion Get this property returns the first character's attribute.
@since CoreText:3.2 UIKit:6.0 YYKit:6.0
*/
@property (nullable, nonatomic, strong, readonly) NSNumber *ligature;
- (nullable NSNumber *)ligatureAtIndex:(NSUInteger)index;
/**
The text effect. (read-only)
@discussion Default is nil (no effect). The only currently supported value
is NSTextEffectLetterpressStyle.
@discussion Get this property returns the first character's attribute.
@since UIKit:7.0
*/
@property (nullable, nonatomic, strong, readonly) NSString *textEffect;
- (nullable NSString *)textEffectAtIndex:(NSUInteger)index;
/**
The skew to be applied to glyphs. (read-only)
@discussion Default is 0 (no skew).
@discussion Get this property returns the first character's attribute.
@since UIKit:7.0
*/
@property (nullable, nonatomic, strong, readonly) NSNumber *obliqueness;
- (nullable NSNumber *)obliquenessAtIndex:(NSUInteger)index;
/**
The log of the expansion factor to be applied to glyphs. (read-only)
@discussion Default is 0 (no expansion).
@discussion Get this property returns the first character's attribute.
@since UIKit:7.0
*/
@property (nullable, nonatomic, strong, readonly) NSNumber *expansion;
- (nullable NSNumber *)expansionAtIndex:(NSUInteger)index;
/**
The character's offset from the baseline, in points. (read-only)
@discussion Default is 0.
@discussion Get this property returns the first character's attribute.
@since UIKit:7.0
*/
@property (nullable, nonatomic, strong, readonly) NSNumber *baselineOffset;
- (nullable NSNumber *)baselineOffsetAtIndex:(NSUInteger)index;
/**
Glyph orientation control. (read-only)
@discussion Default is NO. A value of NO indicates that horizontal glyph forms
are to be used, YES indicates that vertical glyph forms are to be used.
@discussion Get this property returns the first character's attribute.
@since CoreText:4.3 YYKit:6.0
*/
@property (nonatomic, readonly) BOOL verticalGlyphForm;
- (BOOL)verticalGlyphFormAtIndex:(NSUInteger)index;
/**
Specifies text language. (read-only)
@discussion Value must be a NSString containing a locale identifier. Default is
unset. When this attribute is set to a valid identifier, it will be used to select
localized glyphs (if supported by the font) and locale-specific line breaking rules.
@discussion Get this property returns the first character's attribute.
@since CoreText:7.0 YYKit:7.0
*/
@property (nullable, nonatomic, strong, readonly) NSString *language;
- (nullable NSString *)languageAtIndex:(NSUInteger)index;
/**
Specifies a bidirectional override or embedding. (read-only)
@discussion See alse NSWritingDirection and NSWritingDirectionAttributeName.
@discussion Get this property returns the first character's attribute.
@since CoreText:6.0 UIKit:7.0 YYKit:6.0
*/
@property (nullable, nonatomic, strong, readonly) NSArray<NSNumber *> *writingDirection;
- (nullable NSArray<NSNumber *> *)writingDirectionAtIndex:(NSUInteger)index;
/**
An NSParagraphStyle object which is used to specify things like
line alignment, tab rulers, writing direction, etc. (read-only)
@discussion Default is nil ([NSParagraphStyle defaultParagraphStyle]).
@discussion Get this property returns the first character's attribute.
@since CoreText:6.0 UIKit:6.0 YYKit:6.0
*/
@property (nullable, nonatomic, strong, readonly) NSParagraphStyle *paragraphStyle;
- (nullable NSParagraphStyle *)paragraphStyleAtIndex:(NSUInteger)index;
下面我们就看一下详细信息。
1. @property (nullable, nonatomic, strong, readonly) UIFont *font; 和 - (nullable UIFont *)fontAtIndex:(NSUInteger)index;
这一组的作用就是文本的字体,只读属性。默认是Helvetica (Neue) 12
,获取这个属性返回第一个字符的属性。
方法实现
- (UIFont *)font {
return [self fontAtIndex:0];
}
- (UIFont *)fontAtIndex:(NSUInteger)index {
/*
In iOS7 and later, UIFont is toll-free bridged to CTFontRef,
although Apple does not mention it in documentation.
In iOS6, UIFont is a wrapper for CTFontRef, so CoreText can alse use UIfont,
but UILabel/UITextView cannot use CTFontRef.
We use UIFont for both CoreText and UIKit.
*/
UIFont *font = [self attribute:NSFontAttributeName atIndex:index];
if (kSystemVersion <= 6) {
if (font) {
if (CFGetTypeID((__bridge CFTypeRef)(font)) == CTFontGetTypeID()) {
font = [UIFont fontWithCTFont:(CTFontRef)font];
}
}
}
return font;
}
2. @property (nullable, nonatomic, strong, readonly) NSNumber *kern; 和 - (nullable NSNumber *)kernAtIndex:(NSUInteger)index;
这一组的作用就是字距调整,只读属性。
默认是标准字距。 kerning属性表示后面的字符应该从其当前字符的字体定义的默认偏移量中移动多少个点; 正数间距指示更远的移位,而负数间距指示更接近当前的字符的移位。 如果此属性不存在,则将使用标准字距。 如果此属性设置为0.0,则根本不会执行字距调整。
方法实现
- (NSNumber *)kern {
return [self kernAtIndex:0];
}
- (NSNumber *)kernAtIndex:(NSUInteger)index {
return [self attribute:NSKernAttributeName atIndex:index];
}
3. @property (nullable, nonatomic, strong, readonly) UIColor *color; 和 - (nullable UIColor *)colorAtIndex:(NSUInteger)index;
该组的作用就是获取foreground
颜色。
默认是黑色的。
方法实现
- (UIColor *)color {
return [self colorAtIndex:0];
}
- (UIColor *)colorAtIndex:(NSUInteger)index {
UIColor *color = [self attribute:NSForegroundColorAttributeName atIndex:index];
if (!color) {
CGColorRef ref = (__bridge CGColorRef)([self attribute:(NSString *)kCTForegroundColorAttributeName atIndex:index]);
color = [UIColor colorWithCGColor:ref];
}
if (color && ![color isKindOfClass:[UIColor class]]) {
if (CFGetTypeID((__bridge CFTypeRef)(color)) == CGColorGetTypeID()) {
color = [UIColor colorWithCGColor:(__bridge CGColorRef)(color)];
} else {
color = nil;
}
}
return color;
}
4. @property (nullable, nonatomic, strong, readonly) UIColor *backgroundColor; 和 - (nullable UIColor *)backgroundColorAtIndex:(NSUInteger)index;
该组作用就是获取background颜色,默认是nil。
方法实现
- (UIColor *)backgroundColor {
return [self backgroundColorAtIndex:0];
}
- (UIColor *)backgroundColorAtIndex:(NSUInteger)index {
return [self attribute:NSBackgroundColorAttributeName atIndex:index];
}
5. @property (nullable, nonatomic, strong, readonly) NSNumber *strokeWidth; 和 - (nullable NSNumber *)strokeWidthAtIndex:(NSUInteger)index;
该组作用就是获取stroke width
。
默认值是0.0(无描边)。 此属性解释为字体Point size的百分比,用于控制文本绘图模式:正值仅影响绘图描边; 负值是描边和填充。 轮廓文本的典型值为3.0。
方法实现
- (NSNumber *)strokeWidth {
return [self strokeWidthAtIndex:0];
}
- (NSNumber *)strokeWidthAtIndex:(NSUInteger)index {
return [self attribute:NSStrokeWidthAttributeName atIndex:index];
}
6. @property (nullable, nonatomic, strong, readonly) UIColor *strokeColor; 和 - (nullable UIColor *)strokeColorAtIndex:(NSUInteger)index;
该组作用就是获取stroke color
,默认值就是nil(与foreground color
相同)。
方法实现
- (UIColor *)strokeColor {
return [self strokeColorAtIndex:0];
}
- (UIColor *)strokeColorAtIndex:(NSUInteger)index {
UIColor *color = [self attribute:NSStrokeColorAttributeName atIndex:index];
if (!color) {
CGColorRef ref = (__bridge CGColorRef)([self attribute:(NSString *)kCTStrokeColorAttributeName atIndex:index]);
color = [UIColor colorWithCGColor:ref];
}
return color;
}
7. @property (nullable, nonatomic, strong, readonly) NSShadow *shadow; 和 - (nullable NSShadow *)shadowAtIndex:(NSUInteger)index;
该组作用就是获取文本阴影,默认值就是nil。
方法实现
- (NSShadow *)shadow {
return [self shadowAtIndex:0];
}
- (NSShadow *)shadowAtIndex:(NSUInteger)index {
return [self attribute:NSShadowAttributeName atIndex:index];
}
8. @property (nonatomic, readonly) NSUnderlineStyle strikethroughStyle; 和 - (NSUnderlineStyle)strikethroughStyleAtIndex:(NSUInteger)index;
该组作用就是获取strikethrough style
,默认值就是NSUnderlineStyleNone (no strikethrough)
。
方法实现
- (NSUnderlineStyle)strikethroughStyle {
return [self strikethroughStyleAtIndex:0];
}
- (NSUnderlineStyle)strikethroughStyleAtIndex:(NSUInteger)index {
NSNumber *style = [self attribute:NSStrikethroughStyleAttributeName atIndex:index];
return style.integerValue;
}
9. @property (nullable, nonatomic, strong, readonly) UIColor *strikethroughColor; 和 - (nullable UIColor *)strikethroughColorAtIndex:(NSUInteger)index;
该组作用就是获取strikethrough color
,默认值nil (same as foreground color)
。
方法实现
- (UIColor *)strikethroughColor {
return [self strikethroughColorAtIndex:0];
}
- (UIColor *)strikethroughColorAtIndex:(NSUInteger)index {
if (kSystemVersion >= 7) {
return [self attribute:NSStrikethroughColorAttributeName atIndex:index];
}
return nil;
}
10. @property (nonatomic, readonly) NSUnderlineStyle underlineStyle; 和 - (NSUnderlineStyle)underlineStyleAtIndex:(NSUInteger)index;
该组作用就是获取underline style
,默认值为NSUnderlineStyleNone (no underline)
。
方法实现
- (NSUnderlineStyle)underlineStyle {
return [self underlineStyleAtIndex:0];
}
- (NSUnderlineStyle)underlineStyleAtIndex:(NSUInteger)index {
NSNumber *style = [self attribute:NSUnderlineStyleAttributeName atIndex:index];
return style.integerValue;
}
11. @property (nullable, nonatomic, strong, readonly) UIColor *underlineColor; 和 - (nullable UIColor *)underlineColorAtIndex:(NSUInteger)index;
该组作用就是获取underline color
,默认值为nil (same as foreground color)
。
方法实现
- (UIColor *)underlineColor {
return [self underlineColorAtIndex:0];
}
- (UIColor *)underlineColorAtIndex:(NSUInteger)index {
UIColor *color = nil;
if (kSystemVersion >= 7) {
color = [self attribute:NSUnderlineColorAttributeName atIndex:index];
}
if (!color) {
CGColorRef ref = (__bridge CGColorRef)([self attribute:(NSString *)kCTUnderlineColorAttributeName atIndex:index]);
color = [UIColor colorWithCGColor:ref];
}
return color;
}
12. @property (nullable, nonatomic, strong, readonly) NSNumber *ligature; 和 - (nullable NSNumber *)ligatureAtIndex:(NSUInteger)index;
该组的作用就是连接形成控制。
默认值为int值1,ligature属性确定显示字符串时应使用哪种ligature。 值为0表示只应使用正确呈现文本所必需的ligature,1表示应使用标准ligature,而2表示应使用所有可用ligature。 哪些ligature是标准的,取决于脚本和可能的字体。
方法实现
- (NSNumber *)ligature {
return [self ligatureAtIndex:0];
}
- (NSNumber *)ligatureAtIndex:(NSUInteger)index {
return [self attribute:NSLigatureAttributeName atIndex:index];
}
13. @property (nullable, nonatomic, strong, readonly) NSString *textEffect; 和 - (nullable NSString *)textEffectAtIndex:(NSUInteger)index;
该组的作用就是获取文本效果。
缺省值为nil(无效)。 目前唯一支持的值是NSTextEffectLetterpressStyle
。
方法实现
- (NSString *)textEffect {
return [self textEffectAtIndex:0];
}
- (NSString *)textEffectAtIndex:(NSUInteger)index {
if (kSystemVersion >= 7) {
return [self attribute:NSTextEffectAttributeName atIndex:index];
}
return nil;
}
14. @property (nullable, nonatomic, strong, readonly) NSNumber *obliqueness; 和 - (nullable NSNumber *)obliquenessAtIndex:(NSUInteger)index;
要应用于字形的倾斜,默认值为0(没有倾斜)。
方法实现
- (NSNumber *)obliqueness {
return [self obliquenessAtIndex:0];
}
- (NSNumber *)obliquenessAtIndex:(NSUInteger)index {
if (kSystemVersion >= 7) {
return [self attribute:NSObliquenessAttributeName atIndex:index];
}
return nil;
}
15. @property (nullable, nonatomic, strong, readonly) NSNumber *expansion; 和 - (nullable NSNumber *)expansionAtIndex:(NSUInteger)index;
要应用于字形的扩展因子的日志,默认值为0,没有扩展。
方法实现
- (NSNumber *)expansion {
return [self expansionAtIndex:0];
}
- (NSNumber *)expansionAtIndex:(NSUInteger)index {
if (kSystemVersion >= 7) {
return [self attribute:NSExpansionAttributeName atIndex:index];
}
return nil;
}
16. @property (nullable, nonatomic, strong, readonly) NSNumber *baselineOffset; 和 - (nullable NSNumber *)baselineOffsetAtIndex:(NSUInteger)index;
字符与基线的偏移量,以点为单位,默认值为0。
方法实现
- (NSNumber *)baselineOffset {
return [self baselineOffsetAtIndex:0];
}
- (NSNumber *)baselineOffsetAtIndex:(NSUInteger)index {
if (kSystemVersion >= 7) {
return [self attribute:NSBaselineOffsetAttributeName atIndex:index];
}
return nil;
}
17. @property (nonatomic, readonly) BOOL verticalGlyphForm; 和 - (BOOL)verticalGlyphFormAtIndex:(NSUInteger)index;
获取Glyph方向控制。
缺省值是NO。 NO的值表示要使用水平字形,YES表示要使用垂直字形。
方法实现
- (BOOL)verticalGlyphForm {
return [self verticalGlyphFormAtIndex:0];
}
- (BOOL)verticalGlyphFormAtIndex:(NSUInteger)index {
NSNumber *num = [self attribute:NSVerticalGlyphFormAttributeName atIndex:index];
return num.boolValue;
}
18. @property (nullable, nonatomic, strong, readonly) NSString *language; 和 - (nullable NSString *)languageAtIndex:(NSUInteger)index;
获取指定的文本语言。
值必须是包含区域设置标识符的NSString。 默认值未设置。 当这个属性被设置为一个有效的标识符时,它将被用来选择本地化的字形(如果字体支持)和特定于语言环境的换行规则。
方法实现
- (NSString *)language {
return [self languageAtIndex:0];
}
- (NSString *)languageAtIndex:(NSUInteger)index {
if (kSystemVersion >= 7) {
return [self attribute:(id)kCTLanguageAttributeName atIndex:index];
}
return nil;
}
19. @property (nullable, nonatomic, strong, readonly) NSArray<NSNumber *> *writingDirection; 和 - (nullable NSArray<NSNumber *> *)writingDirectionAtIndex:(NSUInteger)index;
指定双向覆盖或嵌入,可以参考NSWritingDirection and NSWritingDirectionAttributeName
。
方法实现
- (NSArray *)writingDirection {
return [self writingDirectionAtIndex:0];
}
- (NSArray *)writingDirectionAtIndex:(NSUInteger)index {
return [self attribute:(id)kCTWritingDirectionAttributeName atIndex:index];
}
20. @property (nullable, nonatomic, strong, readonly) NSParagraphStyle *paragraphStyle; 和 - (nullable NSParagraphStyle *)paragraphStyleAtIndex:(NSUInteger)index;
NSParagraphStyle
对象,用于指定线对齐,标签标尺,书写方向等内容。默认值是nil([NSParagraphStyle defaultParagraphStyle])
。
方法实现
- (NSParagraphStyle *)paragraphStyle {
return [self paragraphStyleAtIndex:0];
}
- (NSParagraphStyle *)paragraphStyleAtIndex:(NSUInteger)index {
/*
NSParagraphStyle is NOT toll-free bridged to CTParagraphStyleRef.
CoreText can use both NSParagraphStyle and CTParagraphStyleRef,
but UILabel/UITextView can only use NSParagraphStyle.
We use NSParagraphStyle in both CoreText and UIKit.
*/
NSParagraphStyle *style = [self attribute:NSParagraphStyleAttributeName atIndex:index];
if (style) {
if (CFGetTypeID((__bridge CFTypeRef)(style)) == CTParagraphStyleGetTypeID()) { \
style = [NSParagraphStyle styleWithCTStyle:(__bridge CTParagraphStyleRef)(style)];
}
}
return style;
}
后记
本篇主要介绍了
Get character attribute as property
部分,感兴趣的给个赞或者关注~~~