Error: -[Entry panoramaID]: unrecognized selector sent to instance
Reported by Eric | September 29th, 2009 @ 11:39 AM
'Entry' is my domain object being used. As I've researched this problem, I've seen reference to this being an issue with a conflict with MapKit, but no resolution or fix. Can someone please let me know if this has been fixed, or if there is a workaround? I can't persist any objects right now. Here is my Entry object, very simple:
import <Foundation/Foundation.h>
import "ObjectiveResource.h"
@interface Entry : NSObject {
NSString *entryId;
NSString *name;
NSString *description;
NSDate *createdAt;
}
@property (nonatomic,retain) NSString entryId; @property (nonatomic,retain) NSString name; @property (nonatomic,retain) NSString description; @property (nonatomic,retain) NSDate createdAt;
@end
Comments and changes to this ticket
-
Chris January 6th, 2010 @ 09:39 AM
Yes it's been fixed make sure that you are using the most recent source from github.
-
Mark May 26th, 2010 @ 11:31 PM
Hi, I think I have the most current version? Most files were modified on Mar 2nd 2009. Is this the latest? I'm having the same problem.
Thanks
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Port of Rails' ActiveResource framework to the iPhone.