Не могу вставить другой view-контроллер при передаче данных из unity3d в iOS
У меня есть мост между Unity 3D и iOS для передачи данных. Я могу успешно отправить данные из Unity 3D на мою iOS, используя extern "C", затем я могу вызвать метод объективного c из метода extern "c". Но из метода объективного c, если я хочу подтолкнуть другой viewcontroller, то он падает и показывает следующую проблему.
A view can only be associated with at most one view controller at a time! View is associated with Clear this association before associating this view with...
Как я могу решить эту проблему?
Вот мой класс View Controller:
@implementation ARViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Just setting Unity delegates and view to add it as subview for my main view.
// This allow me to add a UIButton above the UnityView to popViewController or anything i want to make native in iOS.
unityViewController = [[UnityDefaultViewController alloc] init];
unityController = (UnityAppController*)[[UIApplication sharedApplication] delegate];
unityViewController.view = (UIView*)unityController.unityView;
[viewToUnity addSubview:unityViewController.view];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)gotoAnotherViewController
{
ViewController *arVC = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"ClickVC"];
[self presentViewController:arVC animated:YES completion:nil];
dispatch_async(dispatch_get_main_queue(), ^{
});
}
@end
extern "C" {
void _NativeMethodName(const char* stringValue)
{
[[ARViewController new] gotoAnotherViewController];
NSLog(@"Passed string value: %s", stringValue);
}
}