iOS UITextField 使用与方法解读
UITextField是IOS开发中用户交互中重要的一个控件,常被用来做账号密码框,输入信息框等。 初始化一个文字框: UITextField * textField = [[UITextField alloc]initWithFrame:CGRectMake(100, 30, 100, 100)]; 设置和获取文字框文字: @property(nonatomic,copy) NSString *text; 通过AttributedString创建和获取文字: @property(nonatomic,copy) NSAttributedString *attributedText; 设置字体颜色属性: @property(nonatomic,retain) UIColor *textColor; 设置字体属性: @property(nonatomic,retain) UIFont *font; 设置字体对齐格式: @property(nonatomic)NSTextAlignment textAlignment; 设置输入框风格: @property(nonatomic) UITextBorderStyle borderStyle; 这个风格是一个枚举,如下: typedef NS_ENUM(NSInteger, UITextBorderStyle) { //没有任何边框