CoreText翻转坐标self.bounds.size.height误差范围
我正在使用 CoreText 在视图中绘制文本。为了学习这一点,我使用了一个教程,但突然它在翻转坐标系的部分使用了 self.bounds.size.height 。当我在 Xcode 中复制代码时,它给出了一个错误,因为“bounds”不是结构或联合。为什么这是一个错误,任何人都可以给出一个简短但详细的解释为什么它使用 bounds
感谢正手, 尼古拉斯
I am drawing text in the view with CoreText. To learn this I used a tutorial, but suddenly it uses self.bounds.size.height
, in a part where it flips the coordinate system. When I was duplicating the code in Xcode it gave an error because 'bounds' was not a structure or union. Why is this a error and can anyone give a small but detailed explanation of why it uses bounds
Thanks on forehand,
Nicholas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将该代码放置在 UIViewController 子类中,则它应该是:
self.view.bounds.size.height
。或者将其放入 UIView 子类中,就像您遵循的教程中一样。If you placed that code inside a UIViewController subclass, it should be:
self.view.bounds.size.height
. Or put it in a UIView subclass like in the tutorial you followed.