EXC_BAD_ACCESS iPhone Development
- by gkres121
Sorry, this could be a simple fix, as I am new to iPhone Development.
In my Delegate, after pressing the create profile button, the create profile view is pushed:
-(void) createProfile_clicked:(id)sender {
AddNewProfile *create = [[AddNewProfile alloc] init];
[self.window addSubview:create.view];
[self invisibleCreateProfileBar];
…