目标-c |使用类别覆盖 UIApplication 的 openURL 方法。现在如何调用原来的方法?
嗨,
我正在使用 Plus+。它使用类别覆盖原始 UIApplication 的 openURL 方法。有没有办法使用原始的 UIApplication 方法???我该怎么做?
HI,
i am using Plus+. it overrides the original UIApplication's openURL method using category. is there a way to use the original UIApplication method ??? how can i do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法访问原始方法。引用 Apple 文档:
一般来说,使用类别重写类中的方法(在本例中为 Plus+) )不属于自己的应该避免。
You can't access the original method. Quoting Apple's documentation:
In general, using categories to override methods in classes you (in this case, Plus+) do not own should be avoided.