标签:style blog http color io os ar sp div
1. 将UILabel控件的Text属性设为Attributed
2. 在viewDidLoad方法中添加如下语句:
NSDictionary *underlineAttribute = @{NSUnderlineStyleAttributeName: @(NSUnderlineStyleSingle)}; lbPrivacy.attributedText = [[NSAttributedString alloc] initWithString:@"隐私政策" attributes:underlineAttribute];
Done.
标签:style blog http color io os ar sp div
原文地址:http://www.cnblogs.com/ilovewindy/p/4046439.html