本文介绍了我可以依靠nil UIView返回CGRectZero作为其框架吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是的,我看到了这个:
我只是不明白。
推荐答案
如果您使用的是最新版本的LLVM编译器(Xcode 4.2或更高版本),那么是,发送消息 nil
使用struct-returning方法将生成一个零填充结构。在 CGRect
的情况下,这意味着一个矩形等于 CGRectZero
。
If you're using recent versions of the LLVM Compiler (Xcode 4.2 or later), then yes, messaging nil
with a struct-returning method will produce a zero-filled struct. In the case of CGRect
, that means a rect equal to CGRectZero
.
来源:,谁在ObjC运行时在Apple工作。
Source: Greg Parker, who works at Apple on the ObjC runtime.
这篇关于我可以依靠nil UIView返回CGRectZero作为其框架吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!