我有一个左栏按钮项目。但我希望它更向右移动。目前它粘在左侧。任何人都知道我该如何实现这一目标?
这是我的按钮本身的代码。
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];
希望有人能帮我解决这个问题。
亲切的问候