正在回答 回答被采纳积分+1
3回答
Tender10
2018-09-03 14:02:01
你可以在touchesBegan方法里写如下代码,这样点击屏幕的时候就会跳转控制器。
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{ UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"title" message:@"message" preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *cancleBtn = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]; UIAlertAction *okBtn = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:nil]; [alert addAction:cancleBtn]; [alert addAction:okBtn]; [self presentViewController:alert animated:true completion:nil]; }
慕移动2147961
2018-09-03 10:14:40
我的用alertview打不出代码呀。显示红色斜杠。。。我在网上找UIAlertController 弹框出不来。
网上找的代码 弹框都出不来
也不报错。。。。
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"title" message:@"message" preferredStyle:UIAlertControllerStyleAlert];
[self presentViewController:alert animated:YES completion:nil];
}这样。。但是弹窗不出来⊙∀⊙?呀
iOS入门:基础语法与常用控件
- 参与学习 1337 人
- 提交作业 712 份
- 解答问题 1878 个
很多人都在疑问没有基础该怎么学习iOS开发?不用担心,本路径采用游戏关卡式的教学模式,并且以经典OC与最新Swift双重结合的教学内容,帮助大家快速掌握两种iOS开发语言基础,去掉“零”标签。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星