iOS: Navigation bar with images for buttons

后端 未结 4 1831
天命终不由人
天命终不由人 2021-01-02 07:43

I would like to create a NavigationBar with images as buttons on the right side of the NavigationBar.

Something like below Snapshot

4条回答
  •  忘掉有多难
    2021-01-02 08:05

    I use a category for this:

    UIBarButtonItem+WithImageOnly.h:

    #import 
    
    @interface UIBarButtonItem (WithImageOnly)
    
    - (id)initWithImageOnly:(UIImage*)image target:(id)target action:(SEL)action;
    
    @end
    

    UIBarButtonItem+WithImageOnly.m:

    #import "UIBarButtonItem+WithImageOnly.h"
    
    @implementation UIBarButtonItem (WithImageOnly)
    
    - (id)initWithImageOnly:(UIImage *)image target:(id)target action:(SEL)action {    
        CGRect frame = CGRectMake(0, 0, image.size.width, image.size.height);
        frame = CGRectInset(frame, -5, 0);
    
        UIButton *button = [[UIButton alloc] initWithFrame:frame];
        [button setImage:image forState:UIControlStateNormal];
        [button addTarget:target action:action forControlEvents:UIControlEventTouchUpInside];
    
        return [self initWithCustomView:button];
    }
    
    @end
    

    Usage:

    UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithImageOnly:[UIImage imageNamed:@"image"] target:self action:@selector(someAction:)]
    

提交回复
热议问题