我正在尝试使用 ARKit,以便在我的一个应用程序中启用增强现实。
我可以通过这样做添加 ARViewController:
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];
但我无法删除它并返回我的应用程序...
你有什么想法 ?
谢谢