1

我想在我的 NavigationBar 下添加第二个“工具栏”。

我有一个继承自PullToRefreshViewController 类并继承自 UITableViewController 的类。

但我想在通知下做类似 Facebook 应用的事情:http: //i.imgur.com/puZcY.png

我不知道该怎么做,请您给我建议吗?创建一个自定义的 TableViewController 类似乎并不容易......

问候,

4

1 回答 1

0

Could you not just add a toolbar in IB and set the PullToRefreshControllers frame?

pullToRefreshController.frame = CGRectMake(0, newToolBar.frame.size.height+navBar.frame.size.height, 320, self.view.frame.size.height-(newToolBar.frame.size.height+navBar.frame.size.height));

Like so? If not, I will switch to my mac and try to find a solution.

于 2012-05-29T13:25:38.197 回答