Tôi có ba UIBarButtonItem
tạo như dưới đây. Họ căn chỉnh bên trái và tôi muốn căn giữa để không có khoảng trống ở bên phải. Tôi không thấy thuộc tính căn chỉnh trên UIToolBar
. Có cách nào khác để thực hiện điều này không?
//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];