UIBarButtonItem
Aşağıdaki gibi üç tane oluşturdum. Sola hizalıyorlar ve sağ tarafta boşluk kalmaması için ortaya hizalamak istiyorum. Üzerinde hizalama özelliği göremiyorum UIToolBar
. Bunu başarmanın başka bir yolu var mı?
//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];