我正在尝试在XCode 4.1中填充一个简单的uitableview。
这是MessagesInbox.h:
#import <UIKit/UIKit.h>
@interface MessagesInbox : UITableViewController <UITableViewDelegate,UITableViewDataSource>{
NSMutableArray *listData;
IBOutlet UITableView *table;
}
@property (nonatomic,retain) UITableView *table;
@property (nonatomic, retain) NSArray *listData;
@end
这是MessagesInbox.m:
#import "MessagesInbox.h"
@implementation MessagesInbox
@synthesize listData,table;
- (void)loadView{
}
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
- (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.
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
self.listData = [[NSArray alloc] initWithObjects:@"Red", @"Green", @"Blue", @"Indigo", @"Violet", nil];
}
- (void)viewDidUnload
{
self.listData = nil;
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
}
- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
}
- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 0;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [self.listData count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
cell.textLabel.text = [listData objectAtIndex:indexPath.row];
return cell;
}
/*
// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the specified item to be editable.
return YES;
}
*/
/*
// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
}
}
*/
/*
// Override to support rearranging the table view.
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
{
}
*/
/*
// Override to support conditional rearranging of the table view.
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the item to be re-orderable.
return YES;
}
*/
#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Navigation logic may go here. Create and push another view controller.
/*
<#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];
*/
}
- (void)dealloc {
[listData release];
[super dealloc];
}
@end
无论我做什么,我都会一直白屏......
我已将tableview的委托和数据源连接到文件的所有者。
非常感谢任何帮助,
编辑-------------------
以下是我的联系:
答案 0 :(得分:5)
你要返回零个部分 - 你应该至少有一个。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
答案 1 :(得分:3)
你的部分数量会返回0!如果要显示任何表格数据,则应至少返回1个部分。
答案 2 :(得分:2)
您正在覆盖-loadView
方法,这会阻止您的基类(UITableViewController)加载实际的UITableView。
删除该方法,您将看到您的表格视图。
答案 3 :(得分:1)
我在这里看到两件奇怪的事情:
[1]返回的部分为0;你必须定义至少1个部分才能工作
[2]你在UITableViewController类定义的“tableView”属性的顶部使用另一个表。您必须检查这两个表是否在某种程度上没有冲突(真诚地,我从未尝试将另一个表放在控制器的“标准”表上)。 除了[1]的解决方案外,只需执行此额外检查。
这是来自Apple文档的快照作为参考:
如果通过initWithNibName:bundle:方法(由超类UIViewController声明)指定了nib文件,UITableViewController将加载在nib文件中存档的表视图。否则,它会创建一个具有正确尺寸和自动调整大小掩码的未配置UITableView对象。您可以通过tableView属性访问此视图。 如果加载了包含表视图的nib文件,则数据源和委托将成为nib文件中定义的那些对象(如果有)。如果未指定nib文件或者nib文件未定义数据源或委托,则UITableViewController将表视图的数据源和委托设置为self。 当表视图即将在第一次加载时出现时,表视图控制器会重新加载表视图的数据。每次显示表格视图时,它还会清除其选择(有或没有动画,具体取决于请求)。 UITableViewController类在超类方法viewWillAppear中实现它:您可以通过更改clearsSelectionOnViewWillAppear属性中的值来禁用此行为。 当表格视图出现时,控制器会闪烁表格视图的滚动指示器。 UITableViewController类在超类方法viewDidAppear中实现它: 它实现了超类方法setEditing:animated:这样,如果用户点击导航栏中的Edit | Done按钮,控制器就会切换表格的编辑模式。 您为要管理的每个表视图创建UITableViewController的自定义子类。在initWithStyle:中初始化控制器时,必须指定控制器要管理的表视图(普通或分组)的样式。因为最初创建的表视图没有表维度(即,每个部分的节数和行数)或内容,所以表视图的数据源和委托 - 即UITableViewController对象本身 - 必须提供表维度,细胞含量和任何所需的配置(如常)。您可以覆盖loadView或任何其他超类方法,但如果确实要调用方法的超类实现,通常作为第一个方法调用。
答案 4 :(得分:0)
其他答案都是正确的。
loadView
来调用[super loadView]
。numberOfSectionsInTableView
中的部分数。你应该需要你的iVar table
。 tableView
iVar由UITableViewController定义。您在分配listData
时也会发生内存泄漏。
self.listData = [[NSArray alloc] initWithObjects:@"Red", @"Green", @"Blue", @"Indigo", @"Violet", nil];
上面的代码将保留数组两次。您应该更改为以下之一:
self.listData = [NSArray arrayWithObjects:@"Red", @"Green", @"Blue", @"Indigo", @"Violet", nil];
或
listData = [[NSArray alloc] initWithObjects:@"Red", @"Green", @"Blue", @"Indigo", @"Violet", nil];