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.
如何以编程方式从 Customview 中删除 NSButton?我使用了下面的方法,但是没有用。
[按钮 removeFromSuperview];
[YourButton removeFromSuperview];
或者
尝试
[YourButton setHidden:YES];
这可能会解决您的问题:)