斯坦福大学公开课 iOS应用开发教程学习笔记(第九课)Table Views
1 Table View
Display a dynamic list of data.
Or display a fixed table of data.
subclass of UIScrollView
datasource 负责提供表中数据 / delegate protocol 负责显示
kinds of UITableViews
Plain or Grouped
Static or Dynamic
Sections
Different formats for each row
Cell Type
Subtitle / Basic / Right Detail / Left Detail
Creating Table View MVCs
UITableViewController
UITableView
UITableViewCell
UITableView protocol
@property (nonatomic,strong) UITableView *tableView;
UITableViewDataSource
必选方法:
UITableViewDelegate
Table View “Target/Action"
other delegate methods
will/did willBegin/willEnd...
Modal changes?
2 Demo
略,要练习的可以跟着视频中练习