Getting a NSHTTPCookieManagerCookiesChangedNotification notification and I try to extract an array of cookies from storage as such:
NSHTTPCookieStorage *storage = notification.object;
NSArray *cookies = [storage cookies];
Line # 2 throws the -[NSHTTPCookieStorageInternal cookies]: unrecognized selector sent to instance 0x... error. Header file doesn't mention that the cookies method is deprecated in any way.