Patrick Fewell-Hartling
Patrick Fewell-Hartling
**Description:** The class `OneSignalUserDefaults` relies on a deprecated method of `NSKeyedUnarchiver`, [`+ unarchiveObjectWithData:`](https://developer.apple.com/documentation/foundation/nskeyedunarchiver/1413894-unarchiveobjectwithdata?language=objc), which has been deemed unsafe. This was called out by submitting our application code, including the OneSignal...
The code base I work on includes several classes that utilize selector forwarding. Each forwarding class has the following code: ``` objc - (BOOL)respondsToSelector:(SEL)aSelector { return [super respondsToSelector:aSelector] || [self.otherObject...
I encountered an unexpected problem where simply creating a partial mock of an instance of `UITextField` contained within an other object results in this error if `‑resignFirstResponder` is sent to...