我使用此代碼設置標題和背景顏色與UITableView但標題不顯示?UITableView中的標題不顯示?
- (NSString *)tableView:(UITableView *)aTableView titleForHeaderInSection:(NSInteger)section
{
return @"Contents";
}
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 30)] autorelease];
[headerView setBackgroundColor:[UIColor brownColor]];
[self.view sendSubviewToBack:headerView];
return headerView;
}
請幫助...