2011-11-19 62 views

回答

0

如果您爲UITableView標頭創建了UIView的實例,則可以像訪問其他任何對象一樣訪問它。在這個例子中,footerViewUIView

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section 
{ 
    if (footerView == nil) 
    { 
     footerView = [[UIView alloc] init]; 
     [footerView addSubview: someSubview]; 
    } 

    //return the view for the footer 
    if (section == 2) 
     return footerView; 

    return nil; 
} 
相關問題