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.
我有一个奇怪的错误,我的 UILabel 是自定义对象的子视图,直到几秒钟后才显示所有其他子视图。
此外,如果用户在 UILabel 不可见时触摸屏幕,则 UILabel 会立即变为可见。
有没有人遇到过这种奇怪的行为?有关如何修复它的任何指示?
谢谢!
xcode 4.3.3、ios 5.0+、ARC
可能是它没有与其余对象一起绘制(不知道为什么)。尝试在适当的情况下调用setNeedsDisplaytheUILabel或其父级,例如 from viewWillAppear。
setNeedsDisplay
UILabel
viewWillAppear