我正在尝试将单个自定义单元格加载到UITableView
中,并且不断抛出错误
UITableView dataSource必须从tableView返回一个单元格:cellForRowAtIndexPath:
我不知道为什么。我已将我的表视图单元格链接到我的代码中的UITableViewCell定义,但它一直给我这个错误。这是我的代码;任何帮助将不胜感激。
#import "RegisterDeviceViewController.h"
@implementation RegisterDeviceViewController
@synthesize checkString;
@synthesize cellRegistration;
// The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
/*
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization.
}
return self;
}
*/
//Change UITableView Style to Grouped
- (id)initWithStyle:(UITableViewStyle)style {
// Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
style = UITableViewStyleGrouped;
if (self = [super initWithStyle:style]) {
}
return self;
}
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
self.title = @"Registration";
[super viewDidLoad];
}
// Customize the number of sections in the table view.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section == 1) {
if (indexPath.row == 1) {
return cellRegistration;
}
}
return nil;
}
//Pass search type over to rootViewController section2
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
/*
<#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
// ...
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:detailViewController animated:YES];
[detailViewController release];
*/
}
/*
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations.
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
*/
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc. that aren't in use.
}
- (void)viewDidUnload {
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (void)dealloc {
[super dealloc];
}
@end
答案 0 :(得分:11)
好。这不是UITableView的工作原理。当表视图需要绘制一个单元格(即一行);它在tableView:cellForRowAtIndexPath:
属性中指定的对象上调用dataSource
。从该方法返回UITableViewCell是你的工作。 Apple就是这样做的(以及你应该怎么做):
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"AnIdentifierString"];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"AnIdentifierString"] autorelease];
}
cell.textLabel.text = @"This text will appear in the cell";
return cell;
}
调用方法的次数取决于表视图中的节数和每个节中的行数。这个过程是这样的:
numberOfSectionsInTableView:
上调用委托方法dataSource
(它知道它实现了该方法,因为dataSource
必须遵守UITableViewDataSource
协议。numberOfSectionsInTableView:
返回的数字大于零,则表视图将调用tableView:numberOfRowsInSection:
上的委托方法dataSource
。因此,如果numberOfSectionsInTableView:
返回2
,则tableView:numberOfRowsInSection:
将被调用两次。tableView:numberOfRowsInSection:
的每次调用都返回一个大于零的数字,表视图将调用tableView:cellForRowAtIndexPath:
上的委托方法dataSource
,如果tableView:numberOfRowsInSection:
返回{{ 1}},5
将被调用五次(每个行一次)。tableView:numberOfRowsInSection:
变量):indexPath
。答案 1 :(得分:1)
您写道:
它不断抛出错误 'UITableView dataSource必须返回一个 细胞来自 tableView:cellForRowAtIndexPath:'但是 我不知道为什么......
但你的-tableView:cellForRowAtIndexPath:部分说:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
//...
return nil;
}
在阅读错误消息并查看代码后,您没有看到问题吗?
答案 2 :(得分:0)
您只返回一个部分,只返回一行
节数和行数从0开始。
多数民众赞成你得到这种错误
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section == 0) {
if (indexPath.row == 0) {
//this checking is no necessary, anyway if you want use like this
//ensure that cellRegistration is UITableViewCell
return cellRegistration;
}
}
return nil;
}
另请参阅此post以加载自定义单元格。
答案 3 :(得分:0)
针对更流畅的滚动优化的新iOS7 +解决方案
您已经可以看到旧的解决方案,但只要大量的应用程序将继续只有iOS7 +支持,这是一种更优化和正确的解决方案。
小区初始化
要初始化单元格只需调用dequeueReusableCellWithIdentifier
,iOS7 +系统就足够聪明,可以处理cell == nil
。如果在出列单元格为零时,系统将自动为您制作单元格。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellIdentifier" forIndexPath:indexPath];
return cell;
}
单元格配置
然后使用willDisplayCell
方法完成整个单元格配置。只需在您的类中创建一个配置单元格的方法,就可以获得更好的性能!
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
[self configureCell:cell forRowAtIndexPath:indexPath];
}
- (void)configureCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath {
// Configure your cell
}