网络上查到的范例,是从 table view controller 写起的
这样可以让 table view, table view cell 先摆好
而我必需从 UIViewController 开始写
不能使用 table view controller
目前我是用继承改写的方式,写一个 my table view cell
https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html#//apple_ref/doc/uid/TP40007451-CH7
http://tinyurl.com/pabdxxy
文件中说除了用继承的写法,还有别的方法
似乎别的方法就可以直接用 storyboard 来画了,不用自己 hardcode 算座标
在 list 5-3 下的说明
The string identifier you assign to the prototype cell is the same string
you pass to the table view in dequeueReusableCellWithIdentifier:
这里好像是说,可以直接在 storyboard 里打 Identifier
也可以直接 layout 一个 table view cell
但我实在找不到在哪里打
因为我的画面只有在 root View 里,塞入一个 table view
并没有 table view controller 这样的东西
还是说,我直接拉一个 table view cell 放在 table view 的里面? 嗯,塞不进去
所以我只好用继承改写 table view cell,并且 hard code 内部元件的方法写了
有简单点的方法吗? 谢谢