0

我在我的视图控制器中设置了一个 UITableView 控制器,如下所示:

fieldView = [[UITableView alloc] initWithFrame:CGRectMake(0, logoView.bounds.size.height, 320, (screen.size.height - logoView.bounds.size.height)) style:UITableViewStylePlain];
[fieldView setBackgroundColor:[UIColor greenColor]];
fieldView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleTopMargin;

视图控制器设置为 TableViewDelegate,如下所示:

 UIViewController <UITableViewDelegate, UITableViewDataSource...

问题:我需要对表视图委托方法做什么才能控制这个添加的子视图?

#pragma mark - 
#pragma Table View Delegate Methods
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    NSLog(@"Here");
    return 1;
}
- (NSString *)tableView:(UITableView *)fieldView titleForHeaderInSection:(NSInteger)section {
    NSString *sectionName;
    NSLog(@"Here2");

上述方法在视图控制器中但没有被调用?

4

2 回答 2

5

你需要:

// Add these right after creating the UITableView
fieldView.delegate = self;
fieldView.dataSource = self;

// don't forget to add the tableview
[self.view addSubview:fieldView];

您还需要所有基本UITableViewDelegateUITableViewDataSource方法。这与您实现了一个UITableViewController. 您至少需要:

tableView:numberOfRowsInSection:
tableView:cellForRowAtIndexPath:

如果您计划支持表格编辑,则必须实现和覆盖其他方法。

于 2013-02-18T17:58:34.670 回答
0

您需要为表格视图设置委托和数据源。

fieldView.delegate = controller; // self, if you are creating this table inside your controller
于 2013-02-18T17:59:06.760 回答