如何防止在 Objective-C 中使用除我的自定义方法之外的其他 init 方法
背景 - 在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通常对此进行记录,并将
[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.
您可以重写不想使用的 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.