i hope this is my last question for a while, I open a xib file via:
Results1 *myView1 = [[Results1 alloc]initWithNibName:@"Results1" bundle:nil];
[self.view addSubview:myView1.view];
I have a button on the second xib file:
-(IBAction)Button1:(id)sender
{
[self.view removeFromSuperview];
}
It crashes every time:
0xecf09b: movl 8(%edx), %edi
I have the views linked
I am not sure if this is the problem:
@interface TestTypingToolViewController ()
{
NSString *iResults1;
NSString *iResults2;
NSString *iResults3;
NSString *iResults4;
NSString *iResults5;
NSString *Segment;
NSDictionary *ResultsData;
}
@end
Thanks for all your help, everyone!