【发布时间】:2015-11-13 09:46:48
【问题描述】:
我是 xcode 的新手,我正在尝试使用自定义单元格在 tableview 中显示一些数据,我收到 *** Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:],错误。请任何人指导我。提前致谢。我正在使用故事板来创建 UITableview。
这是我的 Viewcontroller.m 代码
#import "ViewController.h"
#import "CustomCell.h"
@interface ViewController ()
{
NSArray *profilehd;
NSArray *profileimg;
}
@end
@implementation ViewController
@synthesis tableview;
-(void)viewDidLoad
{
tablevw.dataSource = self;
tablevw.delegate = self;
profilehd = [[NSArray alloc]initWithObjects:@"Name",@"Email",@"Skype", nil];
profileimg = [[NSArray alloc]initWithObjects:@"about_me_icon.png",@"email_icon.png",@"skype_icon.png", nil];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
#pragma mark:-UITableView Datasource and Delegate Methods
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [profilehd count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier = @"CellID";
CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil)
{
cell.ProfilehdLabel.text = [profilehd objectAtIndex:indexPath.row];
cell.profileImgvw.image = [UIImage imageNamed:[profileimg objectAtIndex:indexPath.row]];
}
return cell;
}
CustomCell.m
@property (strong, nonatomic) IBOutlet UILabel *profilehdLabel;
@property (strong, nonatomic) IBOutlet UIImageView *profileImgvw;
【问题讨论】:
-
我认为您应该编辑问题代码部分的格式。
标签: ios objective-c iphone xcode uitableview