私は次のコードを持っています:
UIBarButtonItem *promoteButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonItemStyleBordered target:self action:@selector(promoteToInstagram:)];
[promoteButton setTitle:@"Promote"];
self.navigationItem.rightBarButtonItem = promoteButton;
カスタムタイトルでUIBarButtonItemを作成しようとしています。上記でプロモートではなくキャンセルと表示されているのはなぜですか?
これを修正する方法について何かアイデアはありますか?