我需要在ToolBar的中心添加一個按鈕。我已經成功地將按鈕添加到工具欄部分。我的問題如下:在UIToolbar中居中放置UIBarButtonItem並添加自定義文本
1.)我需要居中這個barbutton。它應該在工具欄的中心
2.)我需要在顯示刷新按鈕圖像後有文本。
toolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0 , 320 , 60)];
NSMutableArray* button = [[NSMutableArray alloc] initWithCapacity:1];
UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:self action:@selector(refreshButtonAction:)];
[button addObject:barButton];
[toolBar setItems:button animated:NO];
[self.view addSubview:toolBar];
是的,我有代碼:(做到這一點你能告訴我一個示例代碼說明如何實現這一點? – sharon 2011-12-29 15:40:51