【问题标题】:Custom UIBarButtonItem for UIToolbarUIToolbar 的自定义 UIBarButtonItem
【发布时间】:2016-02-05 15:29:56
【问题描述】:

在我的测试项目中,我计划有多个选择器视图。对于这些选择器视图,将有 UIToolbars 和自定义 UIBarButtons。我试图创建一个类方法,这样我就不必重复代码了,但是按钮似乎没有显示出来。

选择器完成按钮.h

#import <UIKit/UIKit.h>

@interface UIBarButtonItem (test)
+ (UIBarButtonItem*)barButtonItemWithTint:(UIColor*)color andTitle:(NSString*)itemTitle andTarget:(id)theTarget andSelector:(SEL)selector;
@end

Picker Done Button.m

#import "PickerDoneButton.h"

@implementation UIBarButtonItem (test)
+ (UIBarButtonItem*)barButtonItemWithTint:(UIColor*)color andTitle:(NSString*)itemTitle andTarget:(id)theTarget andSelector:(SEL)selector
{
    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    button.tintColor = color;
    button.backgroundColor = [UIColor yellowColor];
    [button addTarget:theTarget action:selector forControlEvents:UIControlEventValueChanged];
    UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithCustomView:button];
    return doneButton;
}
@end

并在我的 View Controller.m 上使用此类方法(我省略了 viewDidLoad 之后的选取器视图方法)

#import "ViewController.h"
#import "PickerDoneButton.h"

@interface ViewController ()
@property (strong, nonatomic) NSArray *numberofPeople;
@property (strong, nonatomic) UIPickerView *countPeople;
@end

@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    self.countPeople = [[UIPickerView alloc] init];
    self.countPeople.dataSource = self;
    self.countPeople.delegate = self;
    self.numberofPeople = @[@"1",@"2",@"3"];

    UIToolbar *countPeopleToolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0,0,0,50)];
    countPeopleToolbar.barStyle = UIBarStyleBlackOpaque;
    // Call the UIBarButtonItem from PickerDoneButton.h
    countPeopleToolbar.items = @[[UIBarButtonItem barButtonItemWithTint:[UIColor redColor] andTitle:@"Done" andTarget:self andSelector:@selector(doneClicked)]];
    [self pickerView:self.countPeople didSelectRow:0 inComponent:0];
}

我是否正确使用了类方法?

【问题讨论】:

    标签: ios objective-c uibarbuttonitem class-method


    【解决方案1】:

    是的,你做得对。您唯一缺少的是您没有将button 的框架设置在doneButton 内。由于按钮没有设置任何框架,因此它不会显示。创建按钮后添加。

    button.frame = CGRectMake(0, 0, 30, 30); // change frame as per your requirement
    

    【讨论】:

    • 我不敢相信我错过了...谢谢您的帮助
    猜你喜欢
    • 2012-06-15
    • 2010-11-07
    • 2012-06-05
    • 1970-01-01
    • 2018-03-29
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多