UIButton选择器方法不起作用

时间:2016-06-16 07:15:50

标签: ios objective-c uiview uiimageview uibutton

我正在创建一个UIIimageView,而不是创建UIView。在uiview中,我在程序上添加了两个uibutton,但按钮选择器方法不起作用。我尝试了很多东西但没有发生任何事这是我的代码

-(void) pagingFunc{
    CGRect screen = [[UIScreen mainScreen] bounds];
    CGFloat width = CGRectGetWidth(screen);
    CGFloat height = CGRectGetHeight(screen);



    //ScrollView Size and Contents
    CGSize mxSize = CGSizeMake( [imgesArry count]*width , height-114);
    [scrlView setContentSize : mxSize];

     self.customView.translatesAutoresizingMaskIntoConstraints =YES;
    self.customView.frame = CGRectMake(0, 0, mxSize.width, mxSize.height);


    int incX = 0 ;

    for( int i = 0; i < [imgesArry count]; i++)
    {
        PFObject *imageObject = [imgesArry objectAtIndex:i];
        PFFile *file;
        if (height == 480) {
            file = [imageObject objectForKey:@"image4s"];
        }
        else{
            file = [imageObject objectForKey:@"image6s"];
        }

    NSString * imgFile = [file  url];
     UIImageView*  imagView = [[UIImageView alloc]initWithFrame : CGRectMake(incX,0,width ,height)];
        imgView.userInteractionEnabled = YES;
        [imagView sd_setImageWithURL:[NSURL URLWithString:imgFile] placeholderImage:[UIImage imageNamed:@"UserUpdationImageCell.png"]];
        btnView  = [[UIView alloc] initWithFrame:CGRectMake(incX, imagView.frame.size.height-60, width, 50)];
        btnView.backgroundColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.8];
        UIButton *bckBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        [bckBtn addTarget:self
                   action:@selector(aMethod)
         forControlEvents:UIControlEventTouchUpInside];
        [bckBtn setTitle:@"Back" forState:UIControlStateNormal];
        bckBtn.frame = CGRectMake(0 ,0, 160.0, 40.0);


        UIButton *downloadBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        [downloadBtn addTarget:self
                   action:@selector(aMethod)
         forControlEvents:UIControlEventTouchUpInside];
        [downloadBtn setTitle:@"Download" forState:UIControlStateNormal];
        downloadBtn.frame = CGRectMake(160 ,0, 160.0, 40.0);
        [btnView addSubview:bckBtn];
        [btnView addSubview:downloadBtn];
        [self.customView addSubview:imagView];
        [self.customView addSubview:btnView];


        incX+= width;
    }
    [scrlView setContentOffset:CGPointMake(width*selectedIndex, 0)];


}

2 个答案:

答案 0 :(得分:0)

可以设置:self.customView.userInteractionEnabled=YES;

我写了一个你描述的简单演示,它可以工作:

// imagView -> view1 -> bckBtn
    UIImageView *imagView = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 200, 200)];
    imagView.userInteractionEnabled = YES;
    imagView.backgroundColor = [UIColor grayColor];
    [self.view addSubview:imagView];

    UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)];
    view1.backgroundColor = [UIColor yellowColor];
    [imagView addSubview:view1];

    UIButton *bckBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    bckBtn.frame = CGRectMake(10, 10, 50, 50);
    bckBtn.backgroundColor = [UIColor redColor];
    [bckBtn addTarget:self
               action:@selector(aMethod)
     forControlEvents:UIControlEventTouchUpInside];
    [bckBtn setTitle:@"Back" forState:UIControlStateNormal];
    [view1 addSubview:bckBtn];

-(void)aMethod{
    NSLog(@"button click");
}

希望它有所帮助。

答案 1 :(得分:0)

首先,确保您没有任何覆盖按钮。 您也可以尝试使用GestureRecognizers。

这是一个Swift片段,我很确定它可以翻译成obj-c

let xButton = UIButton(frame: CGRect(x: 0, y: 0, width: 160, height: 40))
xButton.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(aMethod)))