UIBarButtonItem Custom view in UINavigationBar

后端 未结 2 1058
野的像风
野的像风 2020-12-05 18:30

I am making a custom bar buttons for uinavigationbar, I am using following code

 UIImageView *backImgView= [[UIImageView alloc] initWithImage:[UIImage imageN         


        
相关标签:
2条回答
  • 2020-12-05 19:15

    From Apple documentation:
    Initializes a new item using the specified custom view.

    - (id)initWithCustomView:(UIView *)customView
    

    Parameters customView A custom view representing the item. Return Value Newly initialized item with the specified properties.

    Discussion: The bar button item created by this method does not call the action method of its target in response to user interactions. Instead, the bar button item expects the specified custom view to handle any user interactions and provide an appropriate response.

    Solution: "Create button with your background image (set action to this button) and init bar button with this button". For example:

    UIButton *btn =  [UIButton buttonWithType:UIButtonTypeCustom];
    btn.frame = CGRectMake(0,0,25,25)
    [btn setBackgroundImage:[UIImage imageNamed:@"chk_back.png"] forState:UIControlStateNormal];
    [btn addTarget:self action:@selector(BackBtn) forControlEvents:UIControlEventTouchUpInside];
    UIBarButtonItem *barBtn = [[UIBarButtonItem alloc] initWithCustomView:btn];
    
    0 讨论(0)
  • 2020-12-05 19:24

    I accomplished this using following code:

    UIButton *nxtBtn =  [UIButton buttonWithType:UIButtonTypeCustom];
    [nxtBtn setImage:[UIImage imageNamed:@"chk_next.png"] forState:UIControlStateNormal];
    [nxtBtn addTarget:self action:@selector(NextBtn) forControlEvents:UIControlEventTouchUpInside];
    [nxtBtn setFrame:CGRectMake(0, 0, 64, 31)];
    UIBarButtonItem *nextButton = [[UIBarButtonItem alloc] initWithCustomView:nxtBtn];
    
    checkIn_NavBar.topItem.rightBarButtonItem=nextButton;
    
    0 讨论(0)
提交回复
热议问题