2

如何在 UITextView 中应用粗体、斜体和带下划线的文本?我已经做了一些研究,发现我可以使用“allowsEditingTextAttributes”。我已经将它应用到我的项目中,代码如下所示

//.h
@interface ViewController : UIViewController{
IBOutlet UITextView *allowEditing; 
}

@property(nonatomic) BOOL allowsEditingTextAttributes;


//.m
@synthesize allowsEditingTextAttributes;

- (void) changeAttribute{
allowEditing.allowsEditingTextAttributes = YES;
}

有谁知道我错过了什么?

4

1 回答 1

3

根据参考 allowedEditingTextAttributes允许用户更改输入文本的属性。如果你想为用户输入的文本设置默认属性 - 使用typingAttributes,如果你想要一些带有属性的默认文本 - 使用attributesText属性。

于 2013-07-27T19:38:08.697 回答