Hello!
I'm struggling to build a Unity iOS plugin to display a CNContactViewController as a presentation.
The Obj-c code who seems to pose problem that I'm trying to adapt is :
CNContactViewController *controller = [CNContactViewController viewControllerForUnknownContact:contact];
controller.contactStore = store;
controller.delegate = self;
[self.navigationController pushViewController:controller animated:TRUE];
I understand there is something to do to present the native view over Unity etc. but there is not many documentation or topics about this, I can't find anything concrete...
Also my knowledge of iOS development / Obj-c are almost null, so it's hard to understand how everything is related (UiViewController, NavigationController, AppController...)
If someone have some leads where to look at, are explanations about how iOS native and Unity views are related, he's more than welcome! Thank you very much.
Quentin
↧