Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序中有一个按钮,目前我通过界面生成器连接了一个 IBAction,但我需要连接一个插座,以便我可以在我的代码中声明它,button.hidden = yes但我不能这样做,因为按钮只有一个IBAction,我将如何设置按钮的出口和动作?谢谢!
button.hidden = yes
按住 Control 并将按钮拖到 interface() 部分。或者先声明outlet,在按钮上点右键,可以看到一个菜单,可以选择这些属性。
你的代码是
我的代码是button.hidden = YES;
button.hidden = YES;
我希望这能解决你的问题。