UITextView控件详解

来源:未知 责任编辑:智问网络 发表时间:2013-11-04 19:42 点击:

self.textView = [[[UITextView  alloc] initWithFrame:self.view.frame] autorelease]; //初始化大小并自动释放
 2
 3 self.textView.textColor = [UIColor blackColor];//设置textview里面的字体颜色 
 4
 5 self.textView.font = [UIFont fontWithName:@"Arial" size:18.0];//设置字体名字和字体大小 
 6
 7 self.textView.delegate = self;//设置它的委托方法 
 8
 9 self.textView.backgroundColor = [UIColor whiteColor];//设置它的背景颜色
10
11 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.";//设置它显示的内容 
12
13 self.textView.returnKeyType = UIReturnKeyDefault;//返回键的类型 
14
15 self.textView.keyboardType = UIKeyboardTypeDefault;//键盘类型 
16
17 self.textView.scrollEnabled = YES;//是否可以拖动 
18
19 self.textView.autoresizingMask = UIViewAutoresizingFlexibleHeight;//自适应高度
20
把键盘的回车键当初键盘弹回按钮
pragma mark - UITextView Delegate Methods    

-(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
{   

    if ([text isEqualToString:@"\n"]) {   

        [textView resignFirstResponder];   

        return NO;   

    }

    return YES;   

}
对textView字数限制
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text   
{   
    if (range.location>=100)    
    {   
        return  NO;   
    }   
    else    
    {   
        return YES;   
    }   
}   
作者:lmmilove

    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • Lexical or Preprocessor Issue 'xxx.h
    • ios学习笔记(二)xcode 4.3.2下实现基本交互
    • ios版本的helloworld
    • iphone(object-c) 内存管理(3) 有效的内存管理 前半部分
    • ios学习笔记(一)xcode 4.3.2下创建第一个ios项目
    • IOS类似iphone通讯录TableView的完整demo【附源码】
    • UITableView一些方法
    • [iPhone中级]iPhone团购信息客户端的开发 (二)
    • 如何为Iphone应用创建启动界面
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1