1

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

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;

谢谢

4

1 回答 1

1

您可以在您的 closeButton 之前和之后添加一个UIBarButtonSystemItemwith 。UIBarButtonSystemItemFlexibleSpace

UIBarButtonItem* flexibleSpace = 
    [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
于 2013-04-15T20:10:51.807 回答