如何防止在 Objective-C 中使用除我的自定义方法之外的其他 init 方法

发布于 2024-11-19 15:41:39 字数 226 浏览 4 评论 0原文

背景 - 在我的 iPhone 应用程序中,我有一个自定义 UITableViewController - 我打算通过将现有的“(id)initWithStyle:(UITableViewStyle)style”方法扩展为扩展的自定义方法来向其传递一些必需的配置。

问题 - 确保此自定义控制器类的用户只能调用我的自定义 init 方法,而不能调用 initWithStyle 或任何其他 init 方法的最佳方法是什么?

Background - in my iPhone app I have a custom UITableViewController - I was going to pass some required config to it by extending the existing "(id)initWithStyle:(UITableViewStyle)style" method to an extended custom one.

Question - what's the best way to ensure that the user of this custom controller class can only call my custom init method, and not initWithStyle or any other init methods?

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

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

发布评论

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

评论(2

凹づ凸ル 2024-11-26 15:41:39

我通常对此进行记录,并将 [self doesNotRecognizeSelector:_cmd] 调用放入不打算使用的 init 方法中。

同时,将该方法标记为已弃用(请参阅 如何在 iPhone Objective C 头文件中将函数标记为已弃用?)可防止运行时意外并在编译时向您发出警告。

I usually document this and put a [self doesNotRecognizeSelector:_cmd] call into the init methods that are not intended to be used.

In conjunction, marking the method deprecated (see How do I flag a function as being deprecated in an iPhone Objective C header file?) prevents runtime suprises and gets you a warning at compile time.

末蓝 2024-11-26 15:41:39

您可以重写不想使用的 init 方法,并在那里引发异常。

您还可以覆盖它们并让它们使用指定的初始值设定项进行初始化。

另外,您应该在文档中指定它。

You can override the init methods that you don't want to be used, and raise an exception there.

You can also override them and make them initialize with the designated initializer.

Also, you should specify it on your documentation.

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