ios开发中的UI控件


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];//加入到整个页面中





 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。