UISearchDisplayController 的正确实例化

Posted

技术标签:

【中文标题】UISearchDisplayController 的正确实例化【英文标题】:Proper instantiation of UISearchDisplayController 【发布时间】:2013-05-28 21:30:07 【问题描述】:

我做了一些搜索,但我仍然不清楚答案。我正在尝试在 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】:

你不应该像 LucOlivierDB 建议的那样打电话给[self performSelector:@selector(setSearchDisplayController:) withObject:searchDisplayController];。这是一个私有 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;

【讨论】:

不应该声明 searchController 属性,因为它会与 UIViewController 已经拥有的属性冲突(在 UISearchDisplayController 的 init 中设置)。【参考方案2】:

您收到此错误是因为UIViewControllersearchDisplayController 定义了一个属性。在自定义类中重新定义另一个名为 searchDisplayController 的属性会使编译器感到困惑。如果要定义UISearchDisplayController,请在自定义类的- (void)viewDidLoad 中实例化一个。

例子:

- (void)viewDidLoad

    [super viewDidLoad];
    UISearchBar *searchBar = [UISearchBar new];
    //set searchBar frame
    searchBar.delegate = self;
    UISearchDisplayController *searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self];
    [self performSelector:@selector(setSearchDisplayController:) withObject:searchDisplayController];
    searchDisplayController.delegate = self;
    searchDisplayController.searchResultsDataSource = self;
    searchDisplayController.searchResultsDelegate = self;
    self.tableView.tableHeaderView = self.searchBar;

您可以在自定义类中使用self.searchDisplayController 来引用searchDisplayController

【讨论】:

以上是关于UISearchDisplayController 的正确实例化的主要内容,如果未能解决你的问题,请参考以下文章

为啥 UISearchDisplayController 有时有效,有时无效?

iOS UISearchDisplayController学习笔记

在 UISearchDisplayController 上遇到僵尸问题

修复 UITableView 顶部的 UISearchdisplaycontroller 搜索栏

iphone隐藏UISearchDisplayController结果?

在 UISearchDisplayController 中设置 UISearchBar 的边框颜色