मैंने 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];