每当我在xcode中向textview添加文本时,所有格式都会消失。我的textview设置如下所示:
http://oi62.tinypic.com/28clzrb.jpg
当我运行应用程序时,我会得到所需的格式,如下图所示:
http://s8.postimg.org/c8c33c9p1/bild_1_1.png
但是,当添加这行代码时:
self.addressLabel.text = @"123";
格式消失了,textview现在看起来像这样:
http://postimg.org/image/b0p1oxa6b/
我的唯一猜测是格式以某种方式存在于NSString中并覆盖当前在textview中的内容,但似乎并非如此,因为此代码也会删除所有格式:
self.addressLabel.text = [self.addressLabel.text stringByAppendingString:@"123"];
为什么要删除格式,有人知道吗?