当前位置:  开发笔记 > IOS > 正文

正确实例化UISearchDisplayController

如何解决《正确实例化UISearchDisplayController》经验,为你挑选了1个好方法。

我做了一些搜索,答案仍然不清楚.我试图在TableViewController(TVC)中创建一个UISearchDisplayController的实例.

在我的TVC的标题中,我将searchDisplayController声明为属性:

@interface SDCSecondTableViewController : UITableViewController

@property (nonatomic, strong) NSArray *productList;
@property (nonatomic, strong) NSMutableArray *filteredProductList;
@property (nonatomic, strong) UISearchDisplayController *searchDisplayController;

@end

这样做会产生错误:

属性'searchDisplayController'试图使用超类'UIViewController'中声明的实例变量'_searchDisplayController'

添加@synthesize searchDisplayController实现文件摆脱了错误.

任何人都可以帮我理解这个错误吗?我正在使用Xcode 4.6.2,但我认为属性是从Xcode 4.4开始自动合成的.



1> Thad..:

你不应该[self performSelector:@selector(setSearchDisplayController:) withObject:searchDisplayController];像LucOlivierDB建议那样打电话.这是一个私人API调用,会让Apple拒绝你的应用程序(我知道因为它发生在我身上).相反,只需这样做:

@interface YourViewController ()
    @property (nonatomic, strong) UISearchDisplayController *searchController;
@end

@implementation YourViewController

-(void)viewDidLoad{
    [super viewDidLoad];
    UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
    searchBar.delegate = self;

    self.searchController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self];
    self.searchController.delegate = self;
    self.searchController.searchResultsDataSource = self;
    self.searchController.searchResultsDelegate = self;

    self.tableView.tableHeaderView = self.searchBar;

}

推荐阅读
围脖上的博博_771
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有