我搜索了太多,尝试了很多想法,但我无法让它发挥作用。
我有一个视图控制器,在那个控制器中我有一个具有自定义单元格的表格视图。我连接了网点、数据源和委托,但是当我运行项目时,而不是我的自定义单元格。UITableCell 已显示,但也不显示数据。这是我的 .h 和 .m 文件
#import <UIKit/UIKit.h>
@class SelectMutantCell;
@interface MutantViewController : UIViewController <UITableViewDataSource,UITableViewDelegate>{
UITableView *tableView;
IBOutlet SelectMutantCell *mutantCell;
}
@property (nonatomic, weak) IBOutlet UITableView *tableView;
@property (nonatomic, weak) SelectMutantCell *mutantCell;
- (IBAction)cancel:(id)sender;
@end
这是我的 .m 文件
@implementation MutantViewController
@synthesize tableView = _tableView;
@synthesize mutantCell = _mutantCell;
NSArray *mutants;
- (void)viewDidLoad
{
[super viewDidLoad];
//mutants = [mutants initWithObjects:@"Keko",@"HEHE",@"PEPE", nil];
UINib *cellNib = [UINib nibWithNibName:@"SelectMutantCell" bundle:nil];
[self.tableView registerNib:cellNib forCellReuseIdentifier:@"SelectMutantCell"];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *CellIdentifier = @"SelectMutantCell";
SelectMutantCell *cell = (SelectMutantCell *)[self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
NSLog(@"---");
cell.nameLabel.text = @"Hehe"];
cell.descriptionLabel.text = @"hhe";
return cell;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 3;
}
NSLog(@"---") 用于调试,运行时出现。问题出在
cell.nameLabel.text = @"Hehe"];
cell.descriptionLabel.text = @"hhe";
这个块,如果我写 cell.textLabel.text = "test" 它可以工作,但我需要显示我的自定义单元格。
任何帮助将不胜感激..