iOS - Toolbar(工具欄)

toolbar(工具欄)使用實例

在 IOS 中如果我們想操縱一些東西,基於目前的視圖,我們可以使用工具欄(toolbar)。

例如將電子郵件應用程序的收件箱項選擇刪除,做標誌,回覆等。如下所示。

iOS

重要的屬性

  • barStyle

  • items

添加一個自定義的方法addToolbar

-(void)addToolbar { UIBarButtonItem *spaceItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil]; UIBarButtonItem *customItem1 = [[UIBarButtonItem alloc] initWithTitle:@"Tool1" style:UIBarButtonItemStyleBordered target:self action:@selector(toolBarItem1:)]; UIBarButtonItem *customItem2 = [[UIBarButtonItem alloc] initWithTitle:@"Tool2" style:UIBarButtonItemStyleDone target:self action:@selector(toolBarItem2:)]; NSArray *toolbarItems = [NSArray arrayWithObjects: customItem1,spaceItem, customItem2, nil]; UIToolbar *toolbar = [[UIToolbar alloc]initWithFrame: CGRectMake(0, 366+54, 320, 50)]; [toolbar setBarStyle:UIBarStyleBlackOpaque]; [self.view addSubview:toolbar]; [toolbar setItems:toolbarItems]; }

爲了解所執行的操作,我們添加 UILabel 在 ViewController.xib 中並創建一個 IBOutlet  的 UILabel,並將它命名爲 label

我們還需要添加兩個方法以執行工具欄項目的操作,如下圖所示

-(IBAction)toolBarItem1:(id)sender{ [label setText:@"Tool 1 Selected"]; } -(IBAction)toolBarItem2:(id)sender{ [label setText:@"Tool 2 Selected"]; }

更新ViewController.m 中的方法 viewDidLoad 如下

- (void)viewDidLoad { [super viewDidLoad]; // The method hideStatusbar called after 2 seconds [self addToolbar]; // Do any additional setup after loading the view, typically from a nib. }

輸出

現在,當我們運行程序時,我們會得到下面的輸出。

iOS

點擊 tool1 和 tool2 欄按鈕,我們得到

iOS