1

从一个表视图到另一个表视图(使用 Xcode 4.2 和 iOS 5)。

第一页.h

#import "FavoritesController.h"

#import "Profiles.h"

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    FavoritesController * favoriteview = [[FavoritesController alloc] init];
    [favoriteview setTitle:@"Favorites"];

    NSMutableArray * profiles = [[NSMutableArray alloc]init ];
    profiles = [NSMutableArray arrayWithCapacity:20];

    Profiles * profile = [[Profiles alloc]init];
    profile.profile_name = @"Woot";
    profile.biz_type_desc = @"Woot 1";
    profile.profile_address = @"123, woot";
    profile.profile_email = @"woot@woot.com";
    [profiles addObject:profile];
    profile=[[Profiles alloc]init];
    profile.profile_name = @"Jin-Aurora";
    profile.biz_type_desc = @"Software";
    profile.profile_address = @"682A";
    profile.profile_email = @"jin@jin.biz";
    [profiles addObject:profile];

    [self.navigationController pushViewController:favoriteview animated:YES];
    favoriteview.profilelist = profiles; 
}

收藏夹控制器.h

@interface FavoritesController : UITableViewController

@property(nonatomic,strong)NSMutableArray * profilelist;

@end

收藏控制器.m

 #import "FavoritesController.h"
 #import "Profiles.h"
 #import "ProfileCell.h"

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
   return [self.profilelist count];
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"ProfileCell";

    ProfileCell *cell = (ProfileCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    Profiles * profile = [self.profilelist objectAtIndex:indexPath.row];

    cell.nameLabel.text = profile.profile_name;
    cell.biztypeLabel.text = profile.biz_type_desc;

    // Configure the cell...

    return cell;
}

故事板表视图

这是我得到的错误

2012-02-08 22:28:37.719 测试 [4668:f803] 由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“UITableView 数据源必须从 tableView:cellForRowAtIndexPath:返回一个单元格:”

4

3 回答 3

2

您的 cellForRowAtIndexPath 方法尝试将可重复使用的单元格出列,但如果找不到则不会创建它(如果没有可重复使用的单元格,则会发生这种情况)

ProfileCell *cell = (ProfileCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell)
    cell = [[[ProfileCell alloc] initWithStyle:style reusueIdentifier:CellIdenfitier] autorelease];
于 2012-02-08T15:01:49.173 回答
1

注意 dequeueReusableCellWithIdentifier: 和 dequeueReusableCellWithIdentifier:forIndexPath: 是不同的方法。

以下链接可能对您有所帮助。

dequeueReusableCellWithIdentifier:forIndexPath 中的断言失败:

于 2012-11-19T05:15:08.650 回答
0

我不太确定你想在这里做什么:

NSMutableArray * profiles = [[NSMutableArray alloc]init ];
profiles = [NSMutableArray arrayWithCapacity:20];

第一行创建了一个名为profiles 的新可变数组。第二行创建一个容量为 20 的自动释放可变数组并将其分配给配置文件。所以你基本上掩盖了你在第一行创建的数组。你可以说

NSMutableArray *profiles = [[NSMutableArray alloc] initWithCapacity:20];

或者

NSMutableArray *profiles = [NSMutableArray arrayWithCapacity:20];

正如@wattson12 所述,您崩溃的原因是您正在使尚未创建的单元格出列。您总是想尝试将一个单元格出列,但如果一个单元格不存在,则需要创建一个。同样,@wattson12 为该任务提供了必要的代码。

于 2012-02-08T15:15:02.530 回答