0
我有一個表格,我可以在UITableView
中選擇多行。當我按下「完成」時,我希望它將這些添加到三個不同的數組中。目前它只會保存第一個選中的行。我怎樣才能讓它保存UITableView
中的所有選定的行?在UITableView中保存多個選定的行
這裏是我的「完成」按鈕方法:
-(IBAction)songsDone:(id)sender{
selectedName = [[NSMutableArray alloc] init];
[selectedName addObject:video.title];
selectedAuthor = [[NSMutableArray alloc] init];
[selectedAuthor addObject:video.author];
selectedLink = [[NSMutableArray alloc] init];
[selectedLink addObject:video.thumb];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:[NSBundle mainBundle]];
SongsViewController *songsViewController = [storyboard instantiateViewControllerWithIdentifier:@"SongsViewController"];
[self.navigationController pushViewController:songsViewController animated:YES];
}