objektif-c - Bagaimana untuk menggunakan UIAlertController dalam kaedah aktif Appdelegate.m
高洛峰
高洛峰 2017-05-02 09:24:06
0
1
592

Bagaimana untuk menggunakan UIAlertController dalam kaedah proksi aktif Appdelegate.m?

Anda boleh mengabaikan mesej ralat, masalah utama terletak pada bahagian terakhir

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

membalas semua(1)
刘奇

//Inisialisasikan UIAlertController

UIAlertController *alertCtl = [UIAlertController alertControllerWithTitle:@"提示" message:@"AppDelegate中" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *alertAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:nil];
[alertCtl addAction:alertAction];
//初始化UIWindows
UIWindow *aW = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
aW.rootViewController = [[UIViewController alloc]init];
aW.windowLevel = UIWindowLevelAlert + 1;
[aW makeKeyAndVisible];
[aW.rootViewController presentViewController:alertCtl animated:YES completion:nil];
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan