随笔分类 -  基础控件

摘要:http://blog.sina.com.cn/s/blog_7018d3820101djut.html一、键盘风格UIKit框架支持8种风格键盘。typedefenum{UIKeyboardTypeDefault,//默认键盘:支持所有字符UIKeyboardTypeASCIICapable,//... 阅读全文
posted @ 2015-09-23 13:15 errorbook 阅读(223) 评论(0) 推荐(0)
摘要:1.UITextField的初始化和设置 textField = [[UITextField alloc] initWithFrame:CGRectMake(120.0f, 80.0f, 150.0f, 30.0f)]; [textField setBorderStyle:UITextBord... 阅读全文
posted @ 2015-09-23 13:14 errorbook 阅读(144) 评论(0) 推荐(0)
摘要:一、新建一个textView//初始化 UITextView *textView = [[[UITextView alloc] init] autorelease]; //设置代理 需在interface中声明UITextViewDelegate textView.delegate = self; ... 阅读全文
posted @ 2015-09-23 10:05 errorbook 阅读(194) 评论(0) 推荐(0)