アプリ内全体を使用して、70 枚の写真からアプリ内にフォト ギャラリーを作成する方法
ImageView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"2a.png"],
[UIImage imageNamed:@"2b.png"],
[UIImage imageNamed:@"2c.png"],
nil];
このような uiimagepicker を作成する必要がありますか
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.allowsEditing = YES;
imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:imagePicker animated:YES];
はいの場合、アプリ全体からすべての画像を収集してスライド ショーとして表示する方法や、ユーザーが画像を 1 つずつスライドさせる方法が明確ではありません。
手伝ってくれてありがとう。