关于从 UIView 派生的自定义类的边界/框架的问题

发布于 2024-10-12 03:46:40 字数 309 浏览 4 评论 0原文

我有一个从 UIView 派生的类,它表示将在其上绘制对象的方形区域(280x280),但不知何故只绘制了上部部分(280x187)。

我检查了自定义视图类的initWithCoder和drawRect中的边界和框架,结果是:

initWithCoder-->bounds:(280x280);框架:(280x280)

绘制矩形----->边界:(280x187); frame:(280x187)

initWithCoder 和 drawRect 方法之间可能会发生什么改变了边界和框架?

感谢您提供信息。

I have a class derived from UIView, it represents a square area(280x280) over which objects will be drawn, but somehow only the upper portion(280x187) was drawn.

I checked the bounds and frame within the initWithCoder and drawRect of the custom view class, the results are:

initWithCoder-->bounds:(280x280); frame:(280x280)

drawRect------->bounds:(280x187); frame:(280x187)

What could possible happen between initWithCoder and drawRect methods that changed both the bounds and frame?

Thanks for the information.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

记忆で 2024-10-19 03:46:40

在InterfaceBuilder中,我关闭了视图的自动调整大小并取出了弹簧和支柱,然后视图正确显示了。

Inside InterfaceBuilder, I turned off the autoresize of view and took out the springs and struts, then the view displayed properly.

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