iPhoneアプリケーションでhttp://github.com/facebook/three20を使用しています。指示に従って、プロジェクトにフレームワークを含めました。私は今それを2回検証しました(グーグルグループとIRCの人々の推薦で)。Three20コードの一部がUIViewでカタログ化されたセレクターを使用しようとすると、次のエラーが発生します。
-[TTSearchTextField ancestorOrSelfWithClass:]:認識されないセレクターがインスタンス0x3a85ee0'に送信されました
この例外は、テキストフィールドをタッチするとトリガーされます。
これが私にとってのキッカーです。TTSearchTextFieldにデータソースを割り当てないと、エラーは発生しません。したがって、論理的には、それが私のdataSourceである必要があると考えました。
- データソースのすべての関数にブレークポイントを設定しました。
- プログラムを実行しました。予想どおり、initが呼び出され、アクセサーデリゲートが呼び出されました。
- テキストフィールドをタップすると、dataSourceが呼び出されず、実行時例外が発生します。
私はこれに困惑しています。これまで、カタログを含む外部ライブラリの使用で問題が発生したことはありません。プロジェクトのセットアップに関する詳細情報を提供できます。そこにはかなりの情報があるので、詳細を尋ねるだけです。
TTSearchTextFieldの作成を使用しているコード:
// setup Country
self.searchFieldCountry = [[TTSearchTextField alloc]initWithFrame:CGRectMake(156, 145, 146, 37)];
self.searchFieldCountry.borderStyle = UITextBorderStyleRoundedRect;
self.searchFieldCountry.placeholder = @"Country";
self.searchFieldCountry.autocapitalizationType = UITextAutocapitalizationTypeNone;
OLLocationSearchDataSource *ds = [[OLLocationSearchDataSource alloc]init];
self.searchFieldCountry.dataSource = ds;
[self.view addSubview:self.searchFieldCountry];
[ds release];
私のデータソースのコード:
#import "OLLocation.h"
#import "AppSession.h"
@implementation OLLocation
@synthesize locationData = _locationData;
@synthesize locationMode,country,region;
- (NSMutableArray*)delegates {
if (!_delegates) {
_delegates = TTCreateNonRetainingArray();
}
return _delegates;
}
- (BOOL)isLoadingMore {
return NO;
}
- (BOOL)isOutdated {
return NO;
}
- (BOOL)isLoaded {
return !!_AllLocationData;
}
- (BOOL)isLoading {
return NO;
}
- (BOOL)isEmpty {
return !_AllLocationData.count;
}
- (void)load:(TTURLRequestCachePolicy)cachePolicy more:(BOOL)more {
}
- (void)invalidate:(BOOL)erase {
}
- (void)cancel {
// cancel a search if possible
}
- (void)loadNames {
_AllLocationData = [[AppSession getAppSession] getCountries];
}
- (void)search:(NSString*)text {
[self cancel];
self.locationData = [NSMutableArray array];
if (text.length) {
text = [text lowercaseString];
for (NSString* name in _AllLocationData) {
if ([[name lowercaseString] rangeOfString:text].location == 0) {
[_locationData addObject:name];
}
}
}
}
- (void)dealloc {
[super dealloc];
}
@end
@implementation OLLocationSearchDataSource
@synthesize locations = _locations;
-(id)init {
if (self = [super init]) {
_locations = [[OLLocation alloc] init];
_locations.locationMode = OLLocationModeCountry;
self.model = _locations;
}
return self;
}
-(void)dealloc {
TT_RELEASE_SAFELY(_locations);
[super dealloc];
}
///////////////////////////////////////////////////////////////////////////////////////////////////
// TTTableViewDataSource
- (void)tableViewDidLoadModel:(UITableView*)tableView {
self.items = [NSMutableArray array];
for (NSString* name in _locations.locationData) {
TTTableItem* item = [TTTableTextItem itemWithText:name URL:@"http://google.com"];
[_items addObject:item];
}
}
- (void)search:(NSString*)text {
[_locations search:text];
}
- (NSString*)titleForLoading:(BOOL)reloading {
return @"Searching...";
}
- (NSString*)titleForNoData {
return @"No names found";
}
@end