0

ナビゲーションコントローラーの中央にボタンを追加する方法私は以下のコードを試しました

UIButton *titleButton = [UIButtonbuttonWithType:UIButtonTypeRoundedRect];

[titleButton setFrame:CGRectMake(0, 0, 200, 35)];

self.navigationItem.titleView = titleButton;

しかし、画面には色のない空白のボタンが表示されます

4

2 に答える 2

1
UIButton *titleButton = [UIButtonbuttonWithType:UIButtonTypeRoundedRect];

[titleButton setFrame:CGRectMake((self.view.frame.size.width - 200)/2, 3, 200, 35)];

[self.navigationController.navigationBar addSubview:titleButton];
于 2012-12-27T13:29:33.053 に答える