Emmm .... For App-Store App, then replace
bool isDeallocating = _objc_rootIsDeallocating(arg2);
with performSelector:
SEL sel = NSSelectorFromString(@"_isDeallocating");
bool isDeallocating = [arg2 respondsToSelector:sel] && [arg2 performSelector:sel];
Post
Replies
Boosts
Views
Activity
Sorry for my oversight, For App-Store App, please just drag [UIWindow+FixCrashOnInputKeyboard.h/m] to your project to fix this crash.