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.
愚蠢而简单的问题,但我不得不问。
我在 Storyboard 上拖了一个按钮。如何访问它?用拖动“Ctrl”不提供。如何以编程方式更改 setVisible(Yes/No)?
你需要一个 IBOutlet 到你的 UIButton
在您的视图控制器 h 文件中
IBOutlet UIButton *mybutton; @property (nonatomic, retain) UIButton *mybutton;
在你的 m 文件中
@synthesize mybutton;
然后你应该能够做到:
[mybutton setAlpha:0];