如何在此场景中居中按钮

时间:2013-04-15 20:07:32

标签: ios xcode ios6

我有这些代码行将完成按钮放在工具栏中。 我不知道如何集中它。我在网上尝试了很多东西,但我找不到一个有用的东西。

self.closeButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(close)];
    self.closeButton.enabled = YES;
    self.closeButton.imageInsets = UIEdgeInsetsZero;
    self.closeButton.style = UIBarButtonItemStylePlain;
    self.closeButton.width = 32.000;

感谢

1 个答案:

答案 0 :(得分:1)

您可以在closeButton之前和之后添加UIBarButtonSystemItem UIBarButtonSystemItemFlexibleSpace

UIBarButtonItem* flexibleSpace = 
    [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];