我在 iPhone 应用程序中有两个按钮我希望如果 button1 被隐藏并且当我们创建 PDF 时我们可能会检查 button1 是否已经隐藏然后不会再次隐藏它并且在生成 PDF 时也不会显示它因为创建 PDF 时我隐藏一些按钮。
问问题
1816 次
3 回答
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...
}
快乐编码!!!!
于 2013-05-27T10:00:06.400 回答
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)
于 2013-05-27T10:00:49.163 回答
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
}
于 2013-05-27T10:07:34.680 回答