我想点击动作方法后隐藏按钮

时间:2013-01-30 13:51:16

标签: ios xcode

我的示例代码:

- (IBAction)captureButton:(id)sender {

    captureButton.hidden = YES;

    currImage = [signatureViewController imageWithView:self.view];
    NSLog (@"image %@",currImage);
    imgView = [[UIImageView alloc]initWithFrame:CGRectMake(150,100,300,150)];
    imgView.backgroundColor = [UIColor blackColor];
     imgView.image = currImage;
    [self.view addSubview:imgView];

    image.image = nil;
}

我的问题是捕获按钮正在隐藏视图..请帮助

提前致谢

3 个答案:

答案 0 :(得分:3)

两个选项:

1)添加以下代码以将您的图像视图置于前面:

[self.view bringSubviewToFront:imgView];

2)隐藏你的按钮:

[(UIButton *)sender setHidden:YES];

答案 1 :(得分:0)

试试这个,

yourButton.hidden = YES;

答案 2 :(得分:0)

您可以尝试禁用该按钮。 如果隐藏在视图后面,这可能会有所帮助。

yourbutton.enabled = NO;