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

TextFiled 自定义视图, 点击回收键盘;

时间:2015-10-21 21:08:52      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:

?// 设置return 的样式

textFiled.returnKeyType = UIReturnKeyGo;

?// 设置 自定义 弹出视图(自定义键盘)

UIView *inputView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 0, 200)];

inputView.backgroundColor = [UIColor cyanColor]; textFiled.inputView = inputView;

?// 设置键盘 上的辅助视图

    UIView *inputAccView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 40)];

    inputAccView.backgroundColor = [UIColor cyanColor];

    //textFiled.keyboardType = UIKeyboardTypeNumberPad;

    textFiled.inputAccessoryView = inputAccView;

    [inputAccView release];

#pragma mark --- UITextFailed

 

// 当点击键盘上的 return , 触发该方法

-(BOOL)textFieldShouldReturn:(UITextField *)textField {

    //点击 return 回收键盘

    [textField resignFirstResponder];

    return YES;

}

#pragma mark --- 该方法不是协议中的方法啊

// 点击空白, 回收键盘

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {

    UIView *containerView = [self.window viewWithTag:100];

    UITextField *textFD = (UITextField *)[containerView viewWithTag:200];

    [textFD resignFirstResponder];

    

}

TextFiled 自定义视图, 点击回收键盘;

标签:

原文地址:http://www.cnblogs.com/tapple/p/4898997.html

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