TestFlight在我的应用程序中发现了一个我无法复制的崩溃,但它发生得足够多,我需要修复它。我认为该错误是unrecognized selector sent to instance 0x34a9e0
当我尝试将 locationId 分配给被 GC 消除的对象时引起的。
-[UIViewAnimationState locationId]: unrecognized selector sent to instance 0x34a9e0
0 CoreFoundation 0x371e488f __exceptionPreprocess + 163
1 libobjc.A.dylib 0x34ee9259 objc_exception_throw + 33
2 CoreFoundation 0x371e7a9b -[NSObject doesNotRecognizeSelector:] + 175
3 CoreFoundation 0x371e6915 ___forwarding___ + 301
4 CoreFoundation 0x37141650 _CF_forwarding_prep_0 + 48
5 Skate Spots 0x0000b9b9 -[DetailViewController handlePhotosButtonClick:] (DetailViewController.m:92)
6 CoreFoundation 0x3713e3fd -[NSObject performSelector:withObject:withObject:] + 53
7 UIKit 0x30ed3e07 -[UIApplication sendAction:to:from:forEvent:] + 63
8 UIKit 0x30ed3dc3 -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 31
9 UIKit 0x30ed3da1 -[UIControl sendAction:to:forEvent:] + 45
10 UIKit 0x30ed3b11 -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 493
11 UIKit 0x30ed4449 -[UIControl touchesEnded:withEvent:] + 477
12 UIKit 0x30ec6b87 _UIGestureRecognizerUpdate + 5223
13 CoreFoundation 0x371b8b1b __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 19
14 CoreFoundation 0x371b6d57 __CFRunLoopDoObservers + 259
15 CoreFoundation 0x371b70b1 __CFRunLoopRun + 761
16 CoreFoundation 0x3713a4a5 CFRunLoopRunSpecific + 301
17 CoreFoundation 0x3713a36d CFRunLoopRunInMode + 105
18 GraphicsServices 0x338f9439 GSEventRunModal + 137
19 UIKit 0x30ee6cd5 UIApplicationMain + 1081
20 Skate Spots 0x0000325f -[Image willSendWithObjectLoader:] (Image.m:83)
21 Skate Spots 0x00002b18 + 0
原始代码:
我假设 autorelease 将在此方法的范围内保留引用。
-(IBAction)handlePhotosButtonClick:(id)sender
{
PhotosViewController *vc = [[[PhotosViewController alloc] init] autorelease];
vc.locationID = _location.locationId;
[self.navigationController pushViewController:vc animated:YES];
}
我的代码更改:
我猜这将消除原来的错误,但这是正确的做法吗?
-(IBAction)handlePhotosButtonClick:(id)sender
{
NSLog(@"handlePhotosButtonClick");
PhotosViewController *vc = [[[PhotosViewController alloc] init] retain];
vc.locationID = _location.locationId;
[self.navigationController pushViewController:vc animated:YES];
[vc release];
}
编辑
你们是正确的 _location 没有设置为保留值。
@property (nonatomic, readwrite, assign) RKLocation *location;