First of all, sorry for my english, it is not my native langage :)
I'm getting this crash "Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFNumber isEqualToString:]: unrecognized selector sent to instance 0x68b9d00'".
I saw a lot of similar errors and questions here but the cause were very different than mine.
I have a NSObject that i try to pass trough a prepareForSegue called Event. Event is composed by 3 NSString, here is my Event.h :
@interface Event : NSObject
{
NSString* idEvent;
NSString* lat;
NSString* lng;
}
@property NSString* idEvent;
@property NSString* lat;
@property NSString* lng;
@end
When i get the Event object on the other side, i can output the content of the Event get(NSLog(@"%@", eventGet.lat); ) and it works fine. But when i try to put the "eventGet.lat" into a UILabel, i get the error.
Here is the code where the error occured : DetailEvent is the view where i get the Event.
DetailEvent.h :
@interface DetailEvent : UIViewController
@property (weak, nonatomic) IBOutlet UILabel *latEvent;
@property (weak, nonatomic) IBOutlet UILabel *lngEvent;
@property (strong, nonatomic) Event* eventGet;
@end
And DetailEvent.m :
@implementation DetailEvent
@synthesize latEvent = _latEvent;
@synthesize lngEvent = _lngEvent;
@synthesize eventToDisplay = _eventToDisplay;
- (void)viewDidLoad
{
[super viewDidLoad];
// works fine
NSLog(@"Event lat : %@", _eventToDisplay.lat);
// here is the crash
_latEvent.text = _eventToDisplay.lat;
}
This is confusing me and i would be very grateful!
Thanks !
Eventobject. It seems thatlatis set to an instance ofNSNumberand notNSString– sbooth Jul 19 '12 at 5:23