如何检查任何值是否已隐藏在iPhone应用程序中

时间:2013-05-27 09:52:49

标签: iphone ios uibutton

我在iPhone应用程序中有两个按钮我希望如果隐藏了button1,当我们创建PDF时,我们可能会检查button1是否已被隐藏然后再次隐藏它并且在PDF生成时也不显示它因为PDF时创建我隐藏了一些按钮。

3 个答案:

答案 0 :(得分:2)

你可以写下面的内容......

if(button1.hidden){

//here button1 is hidden , so you can write code accordingly...
}else{
//here button1 is  not hidden , so you can write code accordingly...
}

快乐的编码!!!!!

答案 1 :(得分:0)

您只需使用按钮上的.hidden属性

即可

隐藏按钮(如果尚未隐藏)

if(!yourButton.hidden) //Button is not hidden 
{
   //hide button
   yourButton.hidden = YES;

   //do other magic here if required 
}

要更改按钮的可见性,您可以使用

yourButton.hidden = YES;  //Set button hidden, (YES or NO, NO is by default)

答案 2 :(得分:0)

您可以使用UIButton属性检查isHidden是否隐藏,并使用UIButton方法隐藏setHidden:

将此波纹管逻辑与其方法

一起使用
if ([button1 isHidden]) {
     //Generate your PDF here because if Button is hide then this condition true and load this code
}
else{
     [button1 setHidden:YES];//we hide that button here and after load your code here
}