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.
如果没有图像,我可以通过简单的if和不更改框架来“解决”问题。但我想确保我没有遗漏任何东西。
当按钮中的图像在将其设置为 nil 后不清晰时,我遇到了一个错误,但它仅在某些情况下发生。
调试后我看到如果我在用 nil 设置图像后更改框架,该图像仍然出现。
有没有办法清除 UIButton 中的图像,无论如何都会清除图像?
谢谢。
做这个。
if[myButton imageForState:UIControlStateNormal]!=nil) { [myButton setImage:nil forState:UIControlStateNormal]; }