Closed aksonov closed 10 years ago
What exactly is crashing?
All calls to objc_msgSend gives EXC_BAD_ACCESS for arm64. Fix is quite easy - add cast, like
((void(*)(id, SEL, id))objc_msgSend)(controller,selector, self);
instead of objc_msgSend(controller,selector, self);
within QElement.m and other files
On Nov 19, 2013, at 18:13, Eduardo Scoz notifications@github.com wrote:
What exactly is crashing?
— Reply to this email directly or view it on GitHub.
👍
Already done.
Meant to say this is on the 2.0 branch, which I'm working on. Thanks!
All objc_msgSend should be casted to avoid crash.
https://developer.apple.com/library/ios/documentation/General/Conceptual/CocoaTouch64BitGuide/ConvertingYourAppto64-Bit/ConvertingYourAppto64-Bit.html