AlexDenisov / iActiveRecord

ActiveRecord for iOS without CoreData, only SQLite
http://alexdenisov.github.com/iActiveRecord/
MIT License
354 stars 50 forks source link

The problem occurs when I according the Readme #3

Closed hjue closed 12 years ago

hjue commented 12 years ago

I according the Readme, I have gotten a " -[User setName:]: unrecognized selector sent to instance 0x68896a0" error,

e.g. in the case: User *user = [User newRecord]; user.name = @"Alex"; [user save];

NSArray *users = [User allRecords];
User *userForRemove = [users first];
NSLog(@"%@",userForRemove.name);