ImagePickerController を使用してカメラ ロールにアクセスするアプリを作成しています。アプリにはボタンがあり、それをタップすると、アプリはロールに保存された最後の画像に移動するはずです。そのコードを使用して:
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
[self presentModalViewController:picker animated: YES];
アプリがサムネイルを開き、特定の画像 (フルスクリーン) を開きたい
可能です?