码迷,mamicode.com
首页 > 移动开发 > 详细

ios开发中的UI控件

时间:2015-01-24 14:23:33      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:


textview控件

self.textView = [[[UITextView alloc] initWithFrame:self.view.frame] autorelease]; //初始化大小并自动释放

self.textView.textColor = [UIColor blackColor];//设置textview里面的字体颜色

self.textView.font = [UIFont fontWithName:@"Arial" size:18.0];//设置字体名字和字体大小

self.textView.delegate = self;//设置它的委托方法

self.textView.backgroundColor = [UIColor whiteColor];//设置它的背景颜色

self.textView.text = @"Now is the time for all good developers to come to serve their country.\n\nNow is the time for all good developers to come to serve their country.";//设置它显示的内容

self.textView.returnKeyType = UIReturnKeyDefault;//返回键的类型

self.textView.keyboardType = UIKeyboardTypeDefault;//键盘类型

self.textView.scrollEnabled = YES;//是否可以拖动

self.textView.autoresizingMask = UIViewAutoresizingFlexibleHeight;//自适应高度

[self.view addSubview: self.textView];//加入到整个页面中





 

ios开发中的UI控件

标签:

原文地址:http://www.cnblogs.com/lovecc/p/4245759.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!