bug - nsrivastav/iPhone GitHub Wiki

This is how I am calling the Nib:

-(IBAction)strip1_edit{

// Selecting strip 1 for loading views

	IntelligentPillBoxAppDelegate *appdelegate = (IntelligentPillBoxAppDelegate *)[[UIApplication sharedApplication]delegate];
	appdelegate.strip_index = 1;
	Strip *strip = [[Strip alloc]initWithNibName:@"Strip" bundle:nil];
	[self.navigationController pushViewController:strip animated:YES];
    [strip release];

}