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.
我在 IB 中创建了一个自定义按钮,它为我执行播放视频功能。但有时当视频不可用时,我想让按钮禁用和不可见。
该按钮通过拖动 IBOutlet 链接到代码。
所以当我这样做时,[playButton setEnabled:NO]它会被禁用,但它仍然可见,尽管变得透明。我需要它完全消失。有任何想法吗?
[playButton setEnabled:NO]
设置playButton.hidden = YES为隐藏它。 禁用只会阻止用户交互
playButton.hidden = YES