//初始化一个一个UIAlertController
//参数preferredStyle:是IAlertController的样式
// UIAlertControllerStyleAlert创建出来相当于UIAlertView
// UIAlertControllerStyleActionSheet创建出来相当于UIActionSheet
UIAlertController*alertController = [UIAlertControlleralertControllerWithTitle:@"提示"message:@"kris"preferredStyle:(UIAlertControllerStyleAlert)];
//创建按钮
UIAlertAction*okAction = [UIAlertActionactionWithTitle:@"确定"style:(UIAlertActionStyleDefault)handler:^(UIAlertAction*action) {
NSLog(@"注意学习");
}];
//创建按钮
//注意取消按钮只能添加一个
UIAlertAction*cancelAction = [UIAlertActionactionWithTitle:@"取消"style:(UIAlertActionStyleCancel)handler:^(UIAlertAction*action) {
//点击按钮后的方法直接在这里面写
NSLog(@"注意学习");
}];
////创建警告按钮
//UIAlertAction *structlAction = [UIAlertAction actionWithTitle:@"警告" style:(UIAlertActionStyleDestructive) handler:^(UIAlertAction *action) {
//NSLog(@"注意学习");
//}];
//
//添加按钮将按钮添加到UIAlertController对象上
[alertControlleraddAction:okAction];
[alertControlleraddAction:cancelAction];
//[alertController addAction:structlAction];
//只有在alert情况下才可以添加文本框
[alertControlleraddTextFieldWithConfigurationHandler:^(UITextField*textField) {
textField.placeholder=@"用户名";
textField.secureTextEntry=YES;
}];
////取出文本
//UITextField *text = alertController.textFields.firstObject;
//UIAlertAction *action = alertController.actions.firstObject;
//将UIAlertController模态出来相当于UIAlertView show的方法
[selfpresentViewController:alertControlleranimated:YEScompletion:nil];
iOS9后 弹出框
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 转载 http://www.cocoachina.com/ios/20141126/10320.html如果侵权,...
- iOS 8的新特性之一就是让接口更有适应性、更灵活,因此许多视图控制器的实现方式发生了巨大的变化。全新的UIPre...
- iOS 8的新特性之一就是让接口更有适应性、更灵活,因此许多视图控制器的实现方式发生了巨大的变化。全新的UIPre...