我想知道什么时候在 NSHTTPCookieStorage 中设置了 cookie。是否有 on change 方法或事件处理程序?我想防止设置 cookie。
问问题
751 次
1 回答
3
您可以通过以下通知收听 cookie 更改。
NSHTTPCookieManagerCookiesChangedNotification。
Apple 文档链接如下。
例子:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(methodYouWantToInvoke) //note the ":" - should take an NSNotification as parameter
name:NSHTTPCookieManagerCookiesChangedNotification
object:nil];
于 2018-08-07T13:11:01.170 回答