如何为 searchDisplayController 创建 ivar

发布于 2024-10-28 01:22:13 字数 172 浏览 4 评论 0原文

这个问题之后,我将如何创建如上所述的“ivar”?遇到了同样的问题,我正在尝试解决它,以便苹果会批准我的最新更新

following this question, how would I create an "ivar" as mentioned? Ran into this same issue and I'm trying to work around it so apple will approve my latest update

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

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

发布评论

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

评论(1

多情癖 2024-11-04 01:22:13

在头文件中:

@interface MyClass : Superclass {
     UISearchDisplayController *mySearchDisplayController;
}

在实现中:

mySearchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self];

在-dealloc中:

[mySearchDisplayController release];

In the header file:

@interface MyClass : Superclass {
     UISearchDisplayController *mySearchDisplayController;
}

In the implementation:

mySearchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self];

And in -dealloc:

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