我目前有一个 UITableView,它由一个充满练习的 .plist 填充。我想要做的是通过将每个单击的练习存储到一个数组中来访问表格中的各个练习,该数组稍后将用于填充单独的 UITableView。
我究竟如何访问这些单独的单元格,以便我可以将它们存储到这个数组中。这是我到目前为止所拥有的:
-(IBAction) saveWorkout {
NSMutableArray *workout = [NSMutableArray arrayWithCapacity:10];
[workout addObject: ] // I'm assuming this is where I add a cell to an array (or atleast the cell's string).
}
有什么帮助吗?