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

ios键盘回收终极版

时间:2014-11-30 14:05:47      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   sp   on   ad   ef   tt   res   

#pragma mark UITextViewDelegate
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
{
if ([@"\n" isEqualToString:text] == YES)
{
[textView resignFirstResponder];


return NO;
}

return YES;
}


UITextView *tv = [[UITextView alloc] initWithFrame: CGRectMake(20, 60, 260, 120)];
tv.keyboardType = UIKeyboardAppearanceDefault;
tv.returnKeyType = UIReturnKeyDone;
tv.delegate = self;
[self.window addSubview: tv];

ios键盘回收终极版

标签:io   ar   os   sp   on   ad   ef   tt   res   

原文地址:http://www.cnblogs.com/needly/p/4133039.html

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