我有一个充满 NSMutableArray 的 NSMutableArray。我想根据特定索引数组的大小用适当数量的行填充我的表视图。
我目前有数组设置来获取数组中的第一个元素,然后表格将行数设置为该特定数组的大小。理想情况下,我想将行设置为每个元素的计数,其中大多数(数组)具有不同的大小。
这是我目前拥有的:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
WorkoutManager *workoutManager = [WorkoutManager sharedInstance];
NSMutableArray *blah = [[workoutManager workouts] objectAtIndex:0];
return [blah count];
}
任何帮助将不胜感激。