3

我做了一些搜索,但我仍然不清楚答案。我正在尝试在 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 开始自动合成的。

4

2 回答 2

6

你不应该[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;

}

于 2013-08-17T01:03:01.487 回答
4

您收到此错误是因为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;
}

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

于 2013-06-26T15:56:26.647 回答