我有这些代码行将完成按钮放在工具栏中。 我不知道如何集中它。我在网上尝试了很多东西,但我找不到一个有用的东西。
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;
感谢
答案 0 :(得分:1)
您可以在closeButton之前和之后添加UIBarButtonSystemItem
UIBarButtonSystemItemFlexibleSpace
。
UIBarButtonItem* flexibleSpace =
[[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];