CoreText翻转坐标self.bounds.size.height误差范围

发布于 2024-12-02 05:13:53 字数 199 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寒江雪… 2024-12-09 05:13:53

如果您将该代码放置在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文