ipad programming question
How to add a uitableview to uiview that already contain uitextboxes and uibutton
and initialize it with data
any s开发者_如何学Cuggestion please
I have always found it easier to add additional views into the UITableViewController
rather than nest a UITableView
inside another view.
I use UITableViewStyleGrouped
and then provide a customised UIView
within the UITableViewDelegate
for;
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
- (UIView *) tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
精彩评论