美文网首页
iOS UIToolBar

iOS UIToolBar

作者: CaptainRoy | 来源:发表于2019-01-07 15:57 被阅读27次
屏幕快照 2019-01-07 下午3.56.48.png
UIToolbar *tool = [[UIToolbar alloc] initWithFrame:CGRectMake(0.0f, 40.0f, self.view.frame.size.width, 40.0f)];
    
    tool.barStyle = UIBarStyleDefault;
    tool.backgroundColor = [UIColor orangeColor];
    
    UIBarButtonItem *cancelItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:NULL];
    
    UIBarButtonItem *confirmItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:NULL];
    
    UIBarButtonItem *spaceItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:NULL];
    
    UIBarButtonItem *addItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCamera target:NULL action:NULL];
    addItem.enabled = NO;
    
    [tool setItems:@[cancelItem,spaceItem,confirmItem,spaceItem,addItem]];
    
    [self.view addSubview:tool];

相关文章

网友评论

      本文标题:iOS UIToolBar

      本文链接:https://www.haomeiwen.com/subject/xdiurqtx.html