ฉันได้UIBarButtonItem
สร้างขึ้นสามรายการดังต่อไปนี้ มันจัดชิดซ้ายและฉันต้องการจัดกึ่งกลางเพื่อไม่ให้มีช่องว่างทางด้านขวา UIToolBar
ฉันไม่เห็นสถานที่ให้บริการในตําแหน่ง มีวิธีอื่นในการทำให้สำเร็จหรือไม่?
//create some buttons
UIBarButtonItem *aboutButton = [[UIBarButtonItem alloc] initWithTitle:@"About" style:UIBarButtonItemStyleBordered target:self action:@selector(showAbout:)];
[toolbar setItems:[NSArray arrayWithObjects:settingsButton,deleteButton,aboutButton,nil]];
//Add the toolbar as a subview to the navigation controller.
[self.navigationController.view addSubview:toolbar];