我已经做了大约 3 个小时了,我终于向你们认输了。在我看来,有两个UITableView
,一个是论坛版块,用来发表评论什么的,第二个UITableView
是用来提人的。我遇到的问题是,tableview counts
即使我只想更新 1 个表格视图,两者都受到影响。
我在viewdidload
self.mentionTableView.delegate = self;
self.mentionTableView.dataSource = self;
self.mentionTableView.tag = 1;
self.forumTable.delegate = self;
self.forumTable.dataSource = self;
self.forumTable.tag = 2;
如果我实际上没有加载feedArray
从中forumTable
获取数据的地方,那么提及部分将完美运行。我发现如果matchedNames.count
<feedArray.count
一切正常,但如果matchedNames.count
>feedArray.count
它崩溃,这是我得到的错误
-[__NSCFArray objectAtIndex:]: index (1) beyond bounds (1)
这意味着我只有 1 个项目feedArray
并且matchedNames
有多个。
代替
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
我已经使用这些代码来尝试使其工作,但仍然没有,我什至完成了它们的组合。
1)
if ([tableView isEqual: mentionTableView]){
NSLog(@"%@",matchedNames);
NSLog(@"%i",matchedNames.count);
return [matchedNames count];
} else if([tableView isEqual:forumTable]){
return [feedArray count];
}
2)
if (tableView == mentionTableView){
NSLog(@"%@",matchedNames);
NSLog(@"%i",matchedNames.count);
return [matchedNames count];
} else if(tableView == commentTable){
return [feedArray count];
}
3)
if (tableView.tag == 1){
NSLog(@"%@",matchedNames);
NSLog(@"%i",matchedNames.count);
return [matchedNames count];
} else if(tableView.tag == 2){
return [feedArray count];
}
我知道我不必这样做,else if
但我只是想具体一点,也许可以避免这个问题。
这是我的cellForRowAtIndexPath
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (tableView.tag == 1){
CGAffineTransform transform = CGAffineTransformMakeRotation(3.14);
static NSString *CellIdentifier = @"CellIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.transform = transform;
cell.textLabel.text = [self.matchedNames objectAtIndex:indexPath.row];
return cell;
} else {
static NSString *CellIdentifier = @"commentCell";
commentsCustomCell *cell =(commentsCustomCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[commentsCustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
NSDictionary *feedPost = [feedArray objectAtIndex:indexPath.row];
NSString *checkIFempty = [feedPost objectForKey:@"isForum_empty"];
if (![checkIFempty isEqualToString:@"1"]) {
cell.noCommentsLabel.text = nil;
} else {
cell.noCommentsLabel.text = @"No Comments";
cell.forumComment = nil;
}
NSString *username =[feedPost objectForKey:@"Username"];
NSString *final_time =[feedPost objectForKey:@"final_time"];
NSString *userIDforPic =[feedPost objectForKey:@"UserID"];
finalComment = [feedPost objectForKey:@"comment"];
cell.forumComment.text = finalComment;
return cell;
}
}
如果我的问题令人困惑,我深表歉意,我没有睡 36 个小时。谢谢你看我的问题!