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];