我正在尝试添加一个tableview,所以当有人按下某个按钮时,该视图会切换到tableview,并提供一些选择。
以下是我的按钮代码:
-(IBAction)buttonPressed:(id)sender
{
LevelChoice *level = [[LevelChoice alloc] initWithNibName:nil bundle:nil];
[self.view addSubview:level.view];
[level release];
}
以下是我的UITableViewController子类的代码片段:
LevelChoice.h 代码:
@interface LevelChoice : UITableViewController {
NSArray *choices;
}
LevelChoice.m
代码:
-(void)viewDidLoad
{
choices = [[NSArray alloc] initWithObjects:@"Level 1", @"Level 2", @"Level 3", nil];
[super viewDidLoad];
}
代码:
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 3;
}
-(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];
}
cell.text = [choices objectAtIndex:indexPath.row];
return cell;
}
有谁知道我错过了什么?
答案 0 :(得分:1)
区分控制器和视图。你可以
UITableViewController
与presentModalViewController:animated:
或pushViewController:animated:
一起展示。 (是的,在这种情况下,你可以释放它。)UITableView
,并根据需要使用hidden
属性显示或隐藏它。当然,您需要为表格实现datasource
和delegate
方法。