文字復(fù)制到粘帖版
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pasteboard.string = @“要復(fù)制的文字”;
文字做富文本
//做富文本
NSMutableAttributedString *attributedText2 =[[NSMutableAttributedString alloc] initWithString:_weightLab.text attributes:@{NSForegroundColorAttributeName : [UIColor grayColor]}];
//range為只更改你選中的區(qū)域
[attributedText2 setAttributes:@{NSForegroundColorAttributeName : [UIColor blackColor]} range:NSMakeRange(0, 2)];
_weightLab.attributedText = attri
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者