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