我想在我的应用中的所有页面上添加一个小标题标签。 titleLabel看起来像一个tableview部分标题(如图所示)
注意:我想要除了UITableViewController以外的视图控制器
如何以可重用的方式执行此操作?感谢您阅读的任何建议或参考链接。
答案 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];