将自定义图像UIButtons添加到自定义UIToolbar无法正常工作

时间:2013-11-21 16:49:43

标签: ios uibutton uiimage uitoolbar programmatically-created

我已经实现了一个自定义UIToolBar,其中包含4个UIbutton个。这些按钮是带图像的按钮。我用这段代码创建了它们:

-(NSArray *)setButtonForToolBar
{
    CGRect buttonFrame = {
        .origin.x = 0,
        .origin.y = 0,
        .size.width = self.frame.size.width/4,
        .size.height = self.frame.size.height,
    };

    NSLog(@"Frame width: %f  and Origin x: %f ", buttonFrame.size.width, buttonFrame.origin.x );
    // BOTON CHECK IN
    UIButton *checkinButton = [[UIButton alloc]initWithFrame:buttonFrame] ;
    [checkinButton addTarget:self action:@selector(checkInService:) forControlEvents:UIControlEventTouchUpInside];
    [checkinButton setImage:[UIImage imageNamed:@"btn-checkin.png"] forState:UIControlStateNormal];
    [checkinButton setImage:[UIImage imageNamed:@"btn-checkin-selected.png"] forState:UIControlStateHighlighted | UIControlStateSelected];
    checkinButton.tag = 0;
    UIBarButtonItem *checkInBarBtn = [[UIBarButtonItem alloc] initWithCustomView: checkinButton];


    // BOTON PARA LA INFO
    buttonFrame.origin.x = CGRectGetMaxX(buttonFrame);
NSLog(@"Frame width: %f  and Origin x: %f ", buttonFrame.size.width, buttonFrame.origin.x );
    UIButton *infoBtn = [[UIButton alloc]initWithFrame:buttonFrame];
    [infoBtn addTarget:self action:@selector(checkInService:) forControlEvents:UIControlEventTouchUpInside];
    [infoBtn setImage:[UIImage imageNamed:@"btn-info.png"] forState:UIControlStateNormal];
    [infoBtn setImage:[UIImage imageNamed:@"btn-info-selected.png"] forState:UIControlStateHighlighted | UIControlStateSelected];
    infoBtn.tag = 1;

    UIBarButtonItem *infoBarBtn = [[UIBarButtonItem alloc] initWithCustomView: infoBtn];


    // BOTON PARA VALORACIONES
     buttonFrame.origin.x = CGRectGetMaxX(buttonFrame);
  NSLog(@"Frame width: %f  and Origin x: %f ", buttonFrame.size.width, buttonFrame.origin.x );
    UIButton *voteBtn = [[UIButton alloc]initWithFrame:buttonFrame];
    [voteBtn addTarget:self action:@selector(checkInService:) forControlEvents:UIControlEventTouchUpInside];
    [voteBtn setImage:[UIImage imageNamed:@"btn-comment.png"] forState:UIControlStateNormal];
    [voteBtn setImage:[UIImage imageNamed:@"btn-comment-selected.png"] forState:UIControlStateHighlighted];
    voteBtn.tag = 2;
    UIBarButtonItem *voteBarBtn = [[UIBarButtonItem alloc] initWithCustomView: voteBtn];


    // BOTON PARA PLANES
     buttonFrame.origin.x = CGRectGetMaxX(buttonFrame);
           NSLog(@"Frame width: %f  and Origin x: %f ", buttonFrame.size.width, buttonFrame.origin.x );
    UIButton *planBtn = [[UIButton alloc]initWithFrame:buttonFrame];
    [planBtn addTarget:self action:@selector(checkInService:) forControlEvents:UIControlEventTouchUpInside];
    [planBtn setImage:[UIImage imageNamed:@"btn-fav.png"] forState:UIControlStateNormal];
    [planBtn setImage:[UIImage imageNamed:@"btn-fav-selected.png"] forState:UIControlStateHighlighted | UIControlStateSelected];
    planBtn.tag = 3;

    UIBarButtonItem *planBarBtn = [[UIBarButtonItem alloc] initWithCustomView: planBtn];




    NSArray *buttonItems = [NSArray arrayWithObjects:checkInBarBtn, infoBarBtn, voteBarBtn, planBarBtn, nil];
    return buttonItems;
}
使用=(10,400,300,60)的帧创建

ToolBar

查看NSlog输出:

2013-11-21 17:43:18.557 Woowplanet[3316:70b] Frame width: 75.000000  and Origin x: 0.000000 
2013-11-21 17:43:18.569 Woowplanet[3316:70b] Frame width: 75.000000  and Origin x: 75.000000 
2013-11-21 17:43:18.570 Woowplanet[3316:70b] Frame width: 75.000000  and Origin x: 150.000000 
2013-11-21 17:43:18.571 Woowplanet[3316:70b] Frame width: 75.000000  and Origin x: 225.000000 

输出显示它们应该在正确的位置,我不知道为什么它们几乎是10个正确的位置..

问题是按钮位置不正确。查看图片enter image description here

谢谢。

1 个答案:

答案 0 :(得分:3)

试试这个:

创建具有灵活空间的栏按钮

 UIBarButtonItem *flexibleSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];

这样做:

NSArray *buttonItems = [NSArray arrayWithObjects:flexibleSpace,checkInBarBtn,flexibleSpace, infoBarBtn,flexibleSpace, voteBarBtn,flexibleSpace, planBarBtn,flexibleSpace, nil];