我的UITableView
中有三个部分,当我创建对象进入此UITableView
时,我想指定我希望它进入的部分。我这样做是通过将其添加到三个数组之一。请注意,所有对象最初都会添加到名为对象的持有者NSMutableArray
中。
for (Profile *p in self.objects) {
if ([p.type isEqualToString:@"eol"]) {
[self.eolobjects addObject:p];
}
else if ([p.type isEqualToString:@"ae"]) {
[self.aeobjects addObject:p];
}
else if ([p.type isEqualToString:@"mw"]) {
[self.mwobjects addObject:p];
}
当我想要转到detailViewController
时出现问题- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([[segue identifier] isEqualToString:@"showDetail"]) {
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
Profile *object = self.objects[indexPath.row];
[[segue destinationViewController] setDetailItem:object];
}
}
由于这一行:
Profile *object = self.objects[indexPath.row];
如果我点击(例如)任何部分中的第一个对象,我将始终在对象数组的第一个索引处创建项目的对象,而不是填充第I部分的数组的第一个索引中的对象。点击进入。如果我将self.objects
更改为我的其他三个阵列中的任何一个,也是如此。
是否有更简单的方法可以将细胞添加到UITableView
中的部分,还是有办法解决我的问题?感谢
我的数据源方法如下所示:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Return the number of sections.
return 3;
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
if (section ==0) {
return @"Evolution of Life";
}
else if (section==1){
return @"Active Earth";
}
else if (section==2){
return @"Mineral Wealth";
}
return @"";
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
switch (section) {
case 0: return self.eolobjects.count; break;
case 1: return self.aeobjects.count; break;
case 2: return self.mwobjects.count; break;
}
return 0;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
if (indexPath.section == 0) {
Profile *profile = self.eolobjects[indexPath.row];
cell.textLabel.text = [profile name];
return cell;
}
else if (indexPath.section ==1){
Profile *profile = self.aeobjects[indexPath.row];
cell.textLabel.text = [profile name];
return cell;
}
else if (indexPath.section ==2){
Profile *profile = self.mwobjects[indexPath.row];
cell.textLabel.text = [profile name];
return cell;
}
return cell;
}
答案 0 :(得分:0)
你有两个解决方案
试试这个
Profile *object =nil;
switch (indexPath.) {
case 0: object = self.eolobjects[indexPath.row]; break;
case 1: object = self.aeobjects[indexPath.row]; break;
case 2: object = self.mwobjects[indexPath.row]; break;
}
或者您可以将所有3个数组放在一个数组中并轻松访问它们allObjects[indexPath.section][indexPath.row]