there are two ViewController that one is main viewController and another is WIkitudeViewController in the app.
there is button A that is in main viewcontroller to present into WiKitude view controller,and so there is another button B that is in WiKitude viewcontroller to dismiss viewcontroller and return back to the main viewcontroller.
Nowday, I have a series problem ! When I present into WiKitude viewcontroller and return back to main viewcontroller, I couldn't back into Wikitude viewcontroller once again,if I try to do ,the app would be trashed.
The reason is
self.architectView = ; Thread 1:signal SIGABAT
The arcHitectView is Crate Twice, and when i dimissViewController,the architectView did not dealloced!
How can I do for release there architectview?
A
Andreas Schacherbauer
said
over 7 years ago
Hi, you can have a look at the iOS example application which is part of the SDK package and check the implementation there.
For testing purpose you can set the environment variable 'WTSDKDisableDeallocValidation' to YES to disable a check which leads to the crash.
Best regards
Andreas
W
Wu QingShan
said
over 7 years ago
Thanks, but I do not know 'set the environment variable 'WTSDKDisableDeallocValidation' to YES ' Meaning?it's will be used in 'info.list' or others?
A
Andreas Schacherbauer
said
over 7 years ago
Hi, You can set the variable in the Manage Scheme view => Attributes.
Wu QingShan