在没有 IB 的情况下设置委托属性

发布于 2024-09-02 10:19:21 字数 246 浏览 6 评论 0原文

有没有人展示如何在没有界面生成器的情况下正确设置委托?

http://www.gauravv.com/2009 /12/29/iphone-development-tip-custom-uinavigationbar/

Does anyone show how to set the delegate properly for this without interface builder?

http://www.gauravv.com/2009/12/29/iphone-development-tip-custom-uinavigationbar/

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

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

发布评论

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

评论(1

Smile简单爱 2024-09-09 10:19:21

因为它继承自 UINavigationBar ,所以它将包含所有相同的 @property。因此,您可以执行 self.delegate = delegateObject ,它将设置导航栏的委托。

如果您在所有者类中定义它,您将执行以下操作:

navbar.delegate = delegateObject;

Since, it inherits from UINavigationBar it will contain all of the same @property's. Thus you can do self.delegate = delegateObject and it will set the delegate of the nav bar.

If you are defining it in the owner class you would do the following:

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