码迷,mamicode.com
首页 > 其他好文 > 详细

uiTextView简单的用法

时间:2015-11-11 16:14:05      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

 

  UITextView和UITextField常见的方法差不多。

如下的一个简单例子:

#import "ViewController.h"

@interface ViewController ()<UITextViewDelegate>

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    UITextView  *textview=[[UITextView alloc]initWithFrame:CGRectMake(20, 20, 200, 200)];
    //textview.backgroundColor=[UIColor grayColor];
    //textview.editable=NO;//是否允许编辑
    //textview.scrollEnabled=YES;//是否允许滚动
   // textview.bounces=NO;//弹簧效果
    textview.layer.borderColor=[UIColor redColor].CGColor;//边框效果
    textview.layer.borderWidth=1;//边框粗细
    textview.layer.cornerRadius=80;//设置圆角
    textview.layer.masksToBounds=YES;
    textview.delegate = self;
    textview.returnKeyType=UIReturnKeyDone;
    [self.view addSubview:textview];
      
}

-(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{
     //检测每次输入的字符
    NSLog(@"%@",text);
    if ([text isEqualToString:@"\n"]) {
        [textView resignFirstResponder];

    }
    return YES;
    }

 

uiTextView简单的用法

标签:

原文地址:http://www.cnblogs.com/wyhwyh2114/p/4956205.html

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