iOS6.0:attributedText

@property(nullable, nonatomic,copy) NSAttributedString *attributedText;

// NSAttachmentAttributeName 设置文本附件,取值为NSTextAttachment对象,常用于文字图片混排。

// NSForegroundColorAttributeName设置的颜色与UILabel的textColor属性设置的颜色在地位上是相等的,谁最后赋值,最终显示的就是谁的颜色。但是textColor属性可以与 NSBackgroundColorAttributeName 属性叠加,两者互不干扰,不会被对方的属性值冲掉。
// NSForegroundColorAttributeName 和 NSBackgroundColorAttributeName 的地位也是相等的。

// NSStrikethroughStyleAttributeName 设置删除线,取值为 NSNumber 对象(整数),枚举常量 NSUnderlineStyle中的值中文和英文删除线的位置有所不同。

// NSStrokeWidthAttributeName 设置笔画宽度,取值为 NSNumber 对象(整数),负值填充效果,正值中空效果。典型值为3.0。
// NSStrokeColorAttributeName 填充部分颜色,不是字体颜色,取值为 UIColor 对象。与中空属性搭配,只有镂空的颜色,字体颜色应该是被镂空掉了;与填充属性搭配,字体颜色周围被填充颜色包裹,是两个颜色的组合。

![Upload 屏幕快照 2016-05-11 下午4.51.52.png failed. Please try again.]

你可能感兴趣的:(iOS6.0:attributedText)