UIAlertController 使用
Posted 928593829
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIAlertController 使用相关的知识,希望对你有一定的参考价值。
UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet] ;
[alertVC addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * action)
NSLog(@"点击 取消 ");
]];
[alertVC addAction:[UIAlertAction actionWithTitle:@"拍照" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * action)
NSLog(@"拍照 ");
[weakself loadPictureFromCarmeral];
]];
[alertVC addAction:[UIAlertAction actionWithTitle:@"从手机相册选择" style:UIAlertActionStyleDefault handler:^(UIAlertAction * action)
NSLog(@"点击 从手机相册选择 ");
[weakself getImageFromAlbum];
]];
[self presentViewController:alertVC animated:YES completion:nil];
以上是关于UIAlertController 使用的主要内容,如果未能解决你的问题,请参考以下文章