一、关闭键盘,放弃第一响应者,处理思路有两种
① 使用文本框的 Did End on Exit 绑定事件
② UIControl on Touch 事件 都去操作 sender 的 resignFirstResponder
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@property (weak, nonatomic) IBOutlet UITextField *txtUserName;
@property (weak, nonatomic) IBOutlet UITextField *txtUserPwd;
- (IBAction)onclick_UserLogin:(id)sender;
//关闭键盘
- (IBAction)hideKeyBorad:(id)sender;
@end
.m 文件中
//放弃第一响应者
- (IBAction)hideKeyBorad:(id)sender{
[txtUserName resignFirstResponder];
[txtUserPwd resignFirstResponder];
}
按照如下进行事件关联
二、键盘类型,Return Key,通过设置文本框的属性来实现,切换,email输入框,number数字输入框,weburl输入框等,如下图:
三、alert对话框显示 , 绑定 【测试登录】 按钮的事件 ,设置弹出alert
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"温馨提示"
message:@"你好,数据已经更新完毕" delegate:self cancelButtonTitle:@"取消"
otherButtonTitles:@"确定",@"请选择",@"请投票",nil];
[alertView show];
运行效果如下:
代码地址:http://download.csdn.net/detail/jiangtao_st/7684869