ios學習筆記——UITableView

來源:互聯網
上載者:User

標籤:

UITableView是iOS中使用最頻繁的視圖。

一、UITableView的組成部分

  1、UITableView初始化

    UITableView有兩個協議:

    1)dataSource是UITableViewDataSource類型,主要為UITableView提供顯示用的 資料(UITableViewCell),指定UITableViewCell支援的編輯操作類型        (insert,delete和 reordering),並根據使用者的操作進行相應的資料更新操作,如果資料沒有更具操作進行正確的更新,可能會導致顯示異常,甚至crush。

    2)delegate是UITableViewDelegate類型,主要提供一些可選的方法,用來控制tableView的選擇、指定section的頭和尾的顯示以及協助完成cell的刪除和排序等功    能。    

    UITableView有兩種風格:

    1)Plain,主要用於動態表,而動態表一般在儲存格數目未知的情況下使用。

    2)Grouped,用於靜態表,可以將cell分成一組一組的。

    UITableView只能有一列資料,只能支援縱向滑動。

1 //根據frame和style來建立tableView2     UITableView * tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height) style:UITableViewStylePlain];3     tableView.delegate = self;4     tableView.dataSource = self;5     self.table = tableView;6     [self.view addSubview:tableView];

  2、表頭視圖

    表頭視圖是UITableView最上邊的視圖,經常用於展示表視圖的資訊,也用於展示圖片,輪播圖等。

    我們需要用到@property(nonatomic, retain) UIView *tableHeaderView;這個屬性。

1 //初始化頭部視圖2     UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 100)];3     view.backgroundColor = [UIColor redColor];4     self.table.tableHeaderView = view;

    

  3、表腳視圖

    表腳視圖是UITableView最下邊的視圖,用於展示表視圖的資訊,一般用來顯示“更多”等資訊,或確定按鈕等一些特殊的操作。

    我們需要用到屬性@property(nonatomic, retain) UIView *tableFooterView屬性。

1 //初始化表腳視圖2     UIView * footView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 80)];3     footView.backgroundColor = [UIColor blueColor];4     self.table.tableFooterView = footView;

  

 

未完待續。。。。。。。

ios學習筆記——UITableView

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.