目标-c |使用类别覆盖 UIApplication 的 openURL 方法。现在如何调用原来的方法?

发布于 2024-10-09 05:51:50 字数 103 浏览 2 评论 0原文

嗨,

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

孤君无依 2024-10-16 05:51:51

您无法访问原始方法。引用 Apple 文档

当类别重写继承的方法时,类别中的方法可以像往常一样通过向 super 发送消息来调用继承的实现。但是,如果类别重写了类别类中已存在的方法,则无法调用原始实现。

一般来说,使用类别重写类中的方法(在本例中为 Plus+) )不属于自己的应该避免。

You can't access the original method. Quoting Apple's documentation:

When a category overrides an inherited method, the method in the category can, as usual, invoke the inherited implementation via a message to super. However, if a category overrides a method that already existed in the category's class, there is no way to invoke the original implementation.

In general, using categories to override methods in classes you (in this case, Plus+) do not own should be avoided.

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