iPhone - 编写委托和重载方法

发布于 2024-11-02 03:53:06 字数 131 浏览 1 评论 0原文

我想知道如何编写类委托并重载其方法。 一个例子:我想编写一个类(我将设置为对象的委托的类),它必须是 NSXMLParser 对象的新委托。我想编写一个重载 didStartElement 和foundCharacters 方法的方法。我该怎么做?

i would like to know how can i write a class delegate and overload its method.
An example : i would like to write a class ( a class that i'll set as delegate of an object ) that have to be the new delegate of an NSXMLParser object. And i would want to write a method that overload the didStartElement and foundCharacters methods. How can i do this??

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

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

发布评论

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

评论(1

羞稚 2024-11-09 03:53:06

要编写对象的委托,您必须使用 @protocol 。
要重载方法,您必须对要重载的对象进行子类化。

To write a delegate of an object you have to use @protocol .
To overload method you have to subclass the object you want to overload.

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