我当前的问题是我无法在表格视图控制器 B 中显示多张照片。我尝试使用数组来存储照片 URL,但是当我选择第一张照片时,我的数组只能存储一个 URL。当我选择另一张照片时,我的数组只会将第一个 url 替换为第二个,而第一个 url 消失了。下面是我的代码,这个问题是从这个问题延伸出来的
- (IBAction)organiseAttachement:(id)sender {
// Initialize View Controller
PhotosListViewController *photoListViewController = [[PhotosListViewController alloc]initWithNibName:@"PhotosListViewController" bundle:nil];
photoListViewController.test = imageURL;
collector = [[NSMutableArray alloc]initWithCapacity:0];
[self.collector addObject:imageURL];
NSLog(@"Collector in root %@",self.collector);
[self.navigationController pushViewController:photoListViewController animated:YES];
}