Post

Replies

Boosts

Views

Activity

Comment on Get many crashes on iOS16 beta4 due to "Cannot form weak reference to instance of class _UIRemoteInputViewController. It is possible that this object was over-released, or is in the process of deallocation."
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];
Mar ’23