Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我运行一个附属网站(优惠券代码),我正在研究开发一个 IOS 应用程序,该应用程序可能会在应用程序上显示优惠券等。有谁知道在 Iphone 设备上打开链接时,附属跟踪链接是否按预期运行。链接也可以打开主要的 Safari 应用程序,还是必须在凭证应用程序中进行浏览?
所以一个例子是你点击链接,它把你引向联盟网络。网络在设备上存储一个 cookie,您将被定向到该站点。cookie 会按预期存储在移动设备上吗?
谢谢
看看 NSHTTPCookieStorage,它可能会对你有所帮助。
NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; NSArray *cookies = [storage cookiesForURL: [NSURL URLWithString: @"http://google.com/"]];