1,alertView 相关
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:msg delegate:aDeleagte cancelButtonTitle:cancelName otherButtonTitles:otherbuttonName, nil];
[alert show];
如果有文本框在编辑的状态,即键盘弹出的时候,系统的alertView弹出来了,键盘会被动收起
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:msg delegate:aDeleagte cancelButtonTitle:cancelName otherButtonTitles:otherbuttonName, nil];
[alert show];
如果有文本框在编辑的状态,即键盘弹出的时候,系统的alertView弹出来了,键盘会被动收起