CGRectGetWidth 与 CGRect.size.width
使用哪个更好?我更喜欢 CGRect.size.width 因为它看起来更好。但是,我的同事说 CGRectGetWidth 更好。
Which is better to use? I prefer CGRect.size.width cause it looks nicer. But, my colleague says CGRectGetWidth is better.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CGRectGetWidth/Height 将在返回宽度或高度之前对其进行标准化。归一化基本上只是检查宽度或高度是否为负值,如果是,则对其取反以使其为正值。
在此回答
CGRectGetWidth/Height will normalize the width or height before returning them. Normalization is basically just checking if the width or height is negative, and negating it to make it positive if so.
Answered here
矩形的宽度和高度可以为负值。我不知道这在实践中何时会成立,但根据 Apple 文档:
A rect's width and height can be negative. I have no idea when this would be true in practice, but according to Apple docs: