UTextView

iOS中UITextView方法解读

点点圈 提交于 2019-12-16 10:53:11
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> iOS中UITextView方法解读 常用属性解读: @property ( nonatomic , assign ) id < UITextViewDelegate > delegate; 设置代理属性 @property ( nonatomic , copy ) NSString *text; textView上的文本 @property ( nonatomic , retain ) UIFont *font; 设置文本字体 @property ( nonatomic , retain ) UIColor *textColor; 设置文本颜色 @property ( nonatomic ) NSTextAlignment textAlignment; 设置文本对齐模式 @property ( nonatomic ) NSRange selectedRange; 设置选中的文本范围(只有当textView是第一响应时才有效) @property ( nonatomic , getter =isEditable) BOOL editable; 设置是否可以编辑 @property ( nonatomic , getter =isSelectable) BOOL selectable; 设置是否可以选中