私はUIImagePickerControllerを使用して写真とクロップ画像を選択しています。iOS 11 UIImagePickerController選択後キャンセルボタンバグ
これは、ここで https://forums.developer.apple.com/thread/88286
で見られるように、同じような状況では、私のコードです:
- (void) onTest:(UIButton *)btn {
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
picker.delegate = self;
picker.allowsEditing = YES;
[picker setModalPresentationStyle: UIModalPresentationOverCurrentContext];
[self presentViewController:picker animated:YES completion:nil];
}
これは、ビュー層です。私はこのUIViewを追加しませんでした。 キャンセルボタンを押すことができず、ズームイン/ズームアウトできません。
私は唯一のiOS 11.
bringSubViewToFront:セレクタを使用して、このビューの前面に移動しましたか? – NeverHopeless
最後にこの解決策を見つけましたか? – Danny