我做了一些搜索,答案仍然不清楚。我正試圖在TableViewController(TVC)內創建一個UISearchDisplayController的實例。適當的實例化UISearchDisplayController
在我的TVC的頭,我宣佈一個searchDisplayController作爲一個屬性:
@interface SDCSecondTableViewController : UITableViewController
@property (nonatomic, strong) NSArray *productList;
@property (nonatomic, strong) NSMutableArray *filteredProductList;
@property (nonatomic, strong) UISearchDisplayController *searchDisplayController;
@end
否則可能會產生錯誤:
Property 'searchDisplayController' attempting to use instance variable '_searchDisplayController' declared in super class 'UIViewController'
在實現文件中添加@synthesize searchDisplayController
擺脫了錯誤的。
任何人都可以幫我理解這個錯誤嗎?我使用的是Xcode 4.6.2,但我的印象是,從Xcode 4.4開始自動合成屬性。