首页 > 代码库 > tableviews 回顾

tableviews 回顾

一 选择 ViewController?

? ? 分别可以选

  UINavigationController?

  UITabBarController

  UISplitViewController

? ? ?其中UINavigationController 就像一叠卡片,如图:

? ? ?技术分享

? ? 实现很简单,就是拖一个controller,注意要设置成initial view controller

? ? 通过push和pop来控制其他viewController,如图:

? ? ?技术分享

? ? ?UITabBarController示例:

? ? ??技术分享

? ? 二 tableview

? ? ?tableview可以放置在UINavigationController里来实现master-detail view

? ? ?viewstyles可以是plain或者group

? ? ?tableview的各部件术语:

? ? ?plainStyle:

? ? ??技术分享

? ?groupStyle

? ??技术分享

? ? tableViewCell

? ??技术分享

? ? ?tableView 必须有delegate和data source

? ? ?   data source 函数:

?      技术分享

更多参考:

https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/TableView_iPhone/AboutTableViewsiPhone/AboutTableViewsiPhone.html

?

?

tableviews 回顾