以前IOS用的是UIActionSheetView,现在AlertView和ActionSheetView统一用UIlertController啦。如下:
UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
[alert addAction:[UIAlertAction actionWithTitle:@"立即拍照" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
[self takePhotoOfType:0];
}]];
[alert addAction:[UIAlertAction actionWithTitle:@"从相册选取" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
[self takePhotoOfType:1];
}]];
[alert addAction: [UIAlertAction actionWithTitle: @"取消" style: UIAlertActionStyleCancel handler:nil]];
[self presentViewController:alert animated:YES completion:nil];

883

被折叠的 条评论
为什么被折叠?



