textview
中bold,italic,underline
后NSString
文本值的存储方式?我是iOS新手。我在视图上得到大胆,斜体的文字,但没有保存。这是我的代码。
myTextView.allowsEditingTextAttributes =YES;
NSString *tempMailBodyString= [NSString stringWithFormat:@"<html><body><div>%@</div></body></html>",myTextView.text];
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
if (action == @selector(_showTextStyleOptions:)) {
return NO;
}
return [super canPerformAction:action withSender:sender];
}
答案 0 :(得分:0)
如果您正在寻找如何使用 NSAttributedString / NSMutableAttributedString 为文字添加样式或颜色?
然后参考链接1&amp; 2,
如果您正在寻找如何在文件或核心数据中保存 NSAttributedString / NSMutableAttributedString ?
然后参考链接3,