私は1つの配列を持っています。その配列から画像を取得しています。配列インデックスを次のメソッドに転送したいのですが、どうすればよいですか。
私のコード:-
FrontsCards =[[NSMutableArray alloc]initWithCapacity:13];
[FrontsCards insertObject:@"cloub1.png" atIndex:0];
[FrontsCards insertObject:@"cloub2.png" atIndex:1];
[FrontsCards insertObject:@"cloub3.png" atIndex:2];
[FrontsCards insertObject:@"cloub4.png" atIndex:3];
[FrontsCards insertObject:@"cloub5.png" atIndex:4];
[FrontsCards insertObject:@"cloub6.png" atIndex:5];
[FrontsCards insertObject:@"cloub7.png" atIndex:6];
[FrontsCards insertObject:@"cloub8.png" atIndex:7];
[FrontsCards insertObject:@"cloub9.png" atIndex:8];
[FrontsCards insertObject:@"cloub10.png" atIndex:9];
[FrontsCards insertObject:@"cloub11.png" atIndex:10];
[FrontsCards insertObject:@"cloub12.png" atIndex:11];
[FrontsCards insertObject:@"cloub13.png" atIndex:12];
すべての画像をランダムに取得し、imageviewスクロールを垂直に保存します
randIdx=arc4random()%[FrontsCards count];
NSString *imageName=[FrontsCards objectAtIndex:randIdx];
[ImgView setImage:[UIImage imageNamed:imageName]];
ユーザーが cloub12.png 画像をダブルタップした場合、11 のインデックス値を生成し、それを次のビュー コントローラーに転送します。ユーザーがcloub4インデックスをタップした場合、3を生成します
よろしくお願いします。