網路上查到的範例,是從 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 內部元件的方法寫了
有簡單點的方法嗎? 謝謝