LCText icon indicating copy to clipboard operation
LCText copied to clipboard

获取UILabel点击的字符。获取UITextField或UITextView文字改变回调。

Results 2 LCText issues
Sort by recently updated
recently updated
newest added

你好 在LCTextSelectedHelper.m中 NSMutableAttributedString *attributedText = [[NSMutableAttributedString alloc] initWithAttributedString:label.attributedText]; NSRange textRange = NSMakeRange(0, attributedText.length); [attributedText addAttribute:NSFontAttributeName value:label.font range:textRange]; NSMutableParagraphStyle *paragraphStyle = [NSMutableParagraphStyle new]; paragraphStyle.alignment = label.textAlignment; [attributedText addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:textRange]; [self.textStorage...

``` NSMutableAttributedString * attributedText = [[NSMutableAttributedString alloc] initWithString:@"使用约束布局titleLabel!欢迎使用LCText!"]; [attributedText addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:13] range:NSMakeRange(0, 1)]; ```