RestKit のエラー コールバックでコントローラーの切り替えに問題があります。エラーが発生します:
*** -[RKObjectLoader onDidFailWithError]: message sent to deallocated instance 0x1ddd9680
私は- (void)objectLoader:(RKObjectLoader *)objectLoader didFailWithError:(NSError *)error
このコードでメソッドを切り替えています:
[[[[RKObjectManager sharedManager] client] requestQueue] cancelAllRequests];
scAppDelegate *appDelegate = (scAppDelegate *)[UIApplication sharedApplication].delegate;
WelcomeController *controller = [[WelcomeController alloc] init];
[controller createWelcome];
appDelegate.window.rootViewController = controller;
[appDelegate.window addSubview:[controller view]];
[appDelegate.window makeKeyAndVisible];
すべての RestKit 処理をキャンセルしないため、私の問題は最初の行にあります。ログにいくつかの ObjectMapping 操作が表示され、EXC_BAD_ACCESS (SIGSEGV)
エラーが発生しています。回避策を見つけました-遅延後にコントローラーを切り替えます(を使用performSelector:withObject:afterDelay
)。しかし、私はより良い解決策を探しています。
ObjectMapping 操作は次のとおりです。
2012-09-26 14:50:09.408 dr[5004:907] W restkit.object_mapping:RKObjectMapper.m:87 Adding mapping error: Could not find an object mapping for keyPath: ''
2012-09-26 14:50:09.410 dr[5004:907] E restkit.network:RKObjectLoader.m:231 Encountered errors during mapping: Could not find an object mapping for keyPath: ''
2012-09-26 14:50:09.411 dr[5004:907] E restkit.network:RKObjectLoader.m:360 Encountered an error while attempting to map server side errors from payload: Could not find an object mapping for keyPath: ''
2012-09-26 14:50:09.419 dr[5004:907] I restkit.support:RKCache.m:189 Invalidating cache at path: /var/mobile/Applications/1B9919DC-0674-494D-9C26-F1FC1925E856/Library/Caches/RKClientRequestCache-dr.cloudapp.net/SessionStore
2012-09-26 14:50:09.422 dr[5004:907] I restkit.network.reachability:RKReachabilityObserver.m:123 Reachability observer initialized with IP address: 0.0.0.0.
RestKit の最新バージョンを使用しています。