summerICEREDTEA 2013-02-03 06:48 采纳率: 63.2%
浏览 2747
已采纳

如何在所有使用了自定义UINavigationBar的界面中使用自定义的UIBarButtonItem

不是每个界面都写一遍

UIImage image = [UIImage imageNamed:imagePath];
UIButton
button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(0.0, 0.0, image.size.width, image.size.height);
[button setImage:image forState:UIControlStateNormal];
[button setImage:[UIImage imageNamed:highLightImagePath] forState:UIControlStateHighlighted];
[button addTarget:self action:selector forControlEvents:UIControlEventTouchUpInside];
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];

能不能有一个统一的方法统一设置?

  • 写回答

1条回答 默认 最新

  • xiaoxiaoaishang 2013-02-04 05:49
    关注

    你可以把这个加到一个单独的global-variables文件中,像这样:

    GlobalVariable.h

    +(UIBarButtonItem*)customButton;
    

    GlobalVariable.m

    +(UIBarButtonItem*)customButton{
        UIImage image = [UIImage imageNamed:imagePath];
        UIButton button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.frame = CGRectMake(0.0, 0.0, image.size.width, image.size.height);
        [button setImage:image forState:UIControlStateNormal];
        [button setImage:[UIImage imageNamed:highLightImagePath] forState:UIControlStateHighlighted];
        [button addTarget:self action:selector forControlEvents:UIControlEventTouchUpInside];
        UIBarButtonItem* btn = [[UIBarButtonItem alloc] initWithCustomView:button];
        return btn;
    }
    

    然后,在你想要按钮出现的view中import GlobalVariable.h,然后调用

    self.navigationItem.leftBarButtonItem = [GlobalVariable customButton];

    你可以一直用这个 GlobalVariable,以防你在其他的variables中也需要用到。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?