I can't understand why this code is throwing exception of Bad Access:
- (void)viewDidLoad
{
TheUserEntity* userEntity = [TheUserEntity alloc];
TheUserModel* userModel = [TheUserModel alloc];
userEntity = [userModel Read:1];
[super viewDidLoad];
}
TheUserEntity and TheUserModel are my own classes, 1 has only properties other only CRUD methods
any help? I'm new in iOS development, thanks

SomeObject *myObject = [[SomeObject alloc] init];in iOS code. That would ensure that when you use it, e.g.[userModel Read:1], the object is properly initialized. – chr Jun 28 '12 at 0:55