我做了一些搜索,答案仍然不清楚。我正在尝试在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开始自动合成的。
答案 0 :(得分:6)
你不应该像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;
}
答案 1 :(得分:4)
您收到此错误是因为UIViewController
为searchDisplayController
定义了一个属性。在自定义类中重新定义另一个名为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
。