允許數(shù)據(jù)監(jiān)測
[textView setDataDetectorTypes:UIDataDetectorTypeAll];
設置行高
UITextView *textView = [[UITextView alloc] init];
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.lineSpacing = 27;
NSDictionary *attributesDict = @{
NSParagraphStyleAttributeName : paragraphStyle,
NSFontAttributeName : [UIFont fontWithName:@"STHeitiSC-Light" size:17],
NSForegroundColorAttributeName : [UIColor whiteColor]
};
textView.attributedText = [[NSAttributedString alloc] initWithString:@"xxx" attributes:attributesDict];
最后編輯于 :
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者