我们是否必须在任何简单的 UITouch 程序中综合 UIImageView 和 UIBUtton?

发布于 2024-11-17 14:05:01 字数 77 浏览 4 评论 0原文

我们是否必须在任何简单的 UITouch 程序中合成 UIImageView 和 UIButton?我用谷歌搜索但找不到任何相关的明确答案。

Do we have to synthesize UIImageView and UIButton in any simple UITouch program? I googled but could not find any relevant any clear answer.

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

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

发布评论

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

评论(1

山田美奈子 2024-11-24 14:05:01

我们综合属性。如果我们将任何变量、对象和 IBOutlet 声明为属性,那么我们肯定需要合成它。

将此作为您的实践,这是一个很好的实践,请按照以下步骤

  • 声明您的 UIControl
  • Make IBOutlet
  • Make property
  • 创建连接
  • 在 .m 中将其综合
  • viewDidUnload 中设置 nil
  • 释放它 dealloc

We synthesize the properties. if we declare any variable, object and IBOutlet as property then we definitely need to synthesize it.

Make this as your practice, this is a good practice follow these step

  • declare your UIControl
  • Make IBOutlet
  • Make property
  • Make connections
  • Synthesize it in .m
  • set nil in viewDidUnload
  • release it dealloc.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文