Hi guys,
I'm trying to work with ARKit in order to enable Augmented Reality in one of my applications.
I'm able to add the ARViewController by doing this :
ParkingAppDelegate *appDelegate = (ParkingAppDelegate *)[[UIApplication sharedApplication] delegate];
arvc = [[ARViewController alloc] initWithDelegate:self];
//add the button to the view
[arvc.view addSubview:button];
[[appDelegate window] addSubview:arvc.view];
But I can't removing it and go back to my app ...
Do you have any ideas ?
Thanks