iOS:如何在所有ViewControllers中添加titleview?

时间:2011-02-02 04:27:32

标签: iphone uiviewcontroller

我想在我的应用中的所有页面上添加一个小标题标签。 titleLabel看起来像一个tableview部分标题(如图所示)

注意:我想要除了UITableViewController以外的视图控制器

enter image description here

如何以可重用的方式执行此操作?感谢您阅读的任何建议或参考链接。

1 个答案:

答案 0 :(得分:0)

为什么不创建一个具有您想要的外观的UIView?然后只需在需要时将该视图添加为子视图。

//where "Title" is the view you created

UIView *title = [[Title alloc] initWithFrame:(CGRectMake(0, 30,  
                                 self.view.frame.size.width, 
                                 self.view.frame.size.height))];
[self.view addSubview:title];