自我视图/超级视图

发布于 2024-10-15 12:02:24 字数 160 浏览 2 评论 0原文

有什么区别

[self.view addSubview:view1];

[super.view addSubview:view1];

谢谢!!

弗兰胡

what's the difference between

[self.view addSubview:view1];

and

[super.view addSubview:view1];

Thank You!!

Franhu

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

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

发布评论

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

评论(2

转角预定愛 2024-10-22 12:02:24

除非您重写了 -view 方法,否则没有实际区别。不过,从语义差异来看,说 super.view 是一种明确的尝试,以避免调用当前类中定义的名为 -view 的方法。除非您想表达该含义,否则应该远离 super.whatever 构造。

Unless you've overridden the -view method, there is no practical difference. From a semantic difference, though, saying super.view is an express attempt to avoid invoking a method named -view defined in the current class. Unless you want to express that meaning, you should stay away from the super.whatever construct.

暖阳 2024-10-22 12:02:24

由于视图是一种属性,因此归根结底并没有太大区别。

就我个人而言,我认为 self.view 更具可读性,并且据我所知是更常用的习惯用法。

Since view is a property, there isn't really much difference when it comes down to it.

Personally I think the self.view is more readable and is the more commonly used idiom as far as I know.

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