左バーボタンのアイテムがあります。しかし、私はそれをもっと右に動かしたい。現時点では左側にくっついています。どうすればこれを達成できるか考えている体はありますか?
ボタン自体のコードは次のとおりです。
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setBackgroundImage:[UIImage imageNamed:@"task_status.png"] forState:UIControlStateNormal];
[button addTarget:self action:@selector(changeStatus:) forControlEvents:UIControlEventTouchUpInside];
[button setFrame:CGRectMake(80, 0,100, 18)];
self.tabBarController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
誰かがこれで私を助けてくれることを願っています。
敬具