1
diwup 2013-01-25 15:05:56 +08:00
self.presentingViewController 的返回类型是 UIViewController. 在你的特殊情况里,这个 UIViewController 正好是你的 VC 类型。强转一下就好了。
TC * myTC = (TC *)self.presentingViewController; myTC.item...... |
2
alexrezit 2013-01-25 15:10:08 +08:00
不知道我理解的对不对, 你只是想写一个内容固定的 table view 么?
正常的思路应该是直接把 table view 作为 subview 加进去然后设置 table view 的 delegate 和 data source 为这个 view controller 吧? |
3
chouti OP @alexrezit 因为初学,我用的 Storyboad 来构建我的整个UI,遇到UIViewController中不能加入Static Cells的TableView之后,我就选择了用Container View来嵌入。
我的整个界面大致如图所示 https://www.dropbox.com/s/w4fcu7o0tredlzf/Photo%2013-1-25%2015%2020%2001.jpg 我会试试用你的思路来改一下。谢谢。 |