ios uitableview 頭部增長圖片 一塊兒滾動 朋友圈頭部圖片

實現效果 相似朋友圈頭部圖片.net

一、設置樣式code

//這裏須要設置UITableViewStyleGrouped 這個是一塊兒滾動 若是是  UITableViewStylePlain 是不滾動的 
    _tableView=[[UITableView alloc]initWithFrame:CGRectMake(x, y, width, height) style:UITableViewStyleGrouped];

二、設置高度  (這一點不少文章都沒提到過,我找了半天才找到)blog

- (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 200;
}


三、設置UIView圖片

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{

    UIView * view=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 300, 200)];
    view.backgroundColor=[UIColor redColor];
    return view;
}


如此這就能夠了it


參考資料:io

http://blog.csdn.net/xiaobo16/article/details/7801745table

相關文章
相關標籤/搜索