0
嘿,我嘗試改變我的頁腳的寬度部分:改變頁腳部分的寬度不行
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
UIView *viewFooter = [[UIView alloc]initWithFrame:CGRectMake(10, 0, 300, 44)];
[viewFooter setBackgroundColor:[UIColor blueColor]];
return viewFooter;
}
但頁腳是永遠的寬度爲實現代碼如下(320.0f)....