UITableVIewiOS开发常用类

iOS学习笔记之UITableView(1)

2016-07-24  本文已影响1132人  yetCode

序引

本系列文章将介绍iOS开发中的UITableView控件,将会分成四篇文章完整的讲述UITableView的具体使用方法和注意点,文章编写周期会长一些,由于本人还在学习iOS开发阶段,有些东西可能会描述不对或错误,Markdown排版也不是特别好,欢迎各位读者指点其中不对的地方。


本文主要涉及的知识点:

  1. UITableView的概念
  2. UITableView显示数据的两种样式
  3. UITableView的使用步骤
  4. UITableView的常见属性
  5. UITableViewCell的基本概念
  6. UITableViewCell的常见属性
  7. UITableView的代理方法
  8. UITableViewController的讲解
  9. UITableViewCell的重用

1. UITableView的概念


2. UITableView显示数据的两种样式


3. UITableView的使用步骤


4. UITableView的常见属性


5. UITableViewCell的基本概念


6. UITableViewCell的常见属性


7. UITableView的代理方法

{
return 100;
}


- 返回每一行cell的高度:
```objc
方法声明:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;

使用格式:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.row == 0) {
        return 100;
    } else {
        return 50;
    }
}

8. UITableViewController的讲解


9. UITableViewCell的重用

上一篇下一篇

猜你喜欢

热点阅读