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];
Topic:
App & System Services
SubTopic:
Core OS
Tags: