1 2 3 4 5 6 7 8 9 10 11
| UIToolbar *toolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0,460-44-44,320,44)]; toolBar.barStyle = UIBarStyleDefault; [self.view addSubView:toolBar]; [toolBar release]; UIBarButtonItem *addItem = [[UIBarButton alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:nil]; UIBarButtonItem *saveItem = [[UIBarButton alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemSave target:self action:nil]; UIBarButtonItem *titleItem = [[UIBarButton alloc]initWithTitle:@"title" style:UIBarButtonItemStylePlain target:self action:nil]; UIBarButtonItem *imageItem = [[UIBarButton alloc]initWithImage:[UIImage imageNamed:@"1"] style:UIBarButtonItemStylePlain target:self action:nil]; UIBarButtonItem *flexibleItem = [[UIBar] NSArray *items = @[addItem,saveItem,titleItem,imageItem]; [toolBar setItems:items animated:Yes];
|