我想知道何时在nshttppookiestorage中设置cookie。是否有更改方法或事件处理程序?我想防止cookie设置。
您可以通过以下通知来收听cookie更改。
nshtppookiemanagercookieschangednotification。
Apple文档链接下面。
https://developer.apple.com/documentation/foundation/nshtpcookiemanagercookieschangednotification?language=Objc
示例:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(methodYouWantToInvoke) //note the ":" - should take an NSNotification as parameter
name:NSHTTPCookieManagerCookiesChangedNotification
object:nil];