0

我想要一个带有纯文本标签的 UIBarButtonItem 用作导航栏上的标题。我怎样才能做到这一点?我的代码目前如下所示:

UIBarButtonItem *titleButton = [[UIBarButtonItem alloc] initWithTitle:@"CustomTitle" style:UIBarButtonItemStylePlain target:self action:@selector(titleClick)];
UIView *customTitleView = [[UIView alloc] initWithFrame:self.navigationItem.titleView.frame];
//??? now what
self.navigationItem.titleView = customTitleView;

那么...如何以编程方式将此 UIBarButtonItem 项添加到 customTitleView 中?也许 customTitleView 是不必要的中间步骤?

我想使用 UIBarButton 项,因为我希望外观与左/右栏按钮项匹配。但如果绝对必要,我可以使用自定义 UIButton 和图像。

4

0 回答 0