在 iPhone 应用程序中处理 cookie
我有 PHP 报价申请。在此应用程序中,当用户登录时,我启动新会话并以这种方式保存他的 ID $_SESSION['id'] = $id
。我如何在我的 iPhone 应用程序中使用这个变量。我想我可以使用cookies。但是,当我在应用程序启动时创建 cookie 时,如何在下一个屏幕中使用此 cookie 的值。如果您能给一些起点,我会很高兴。我正在开发本机应用程序。
I have PHP application for offers. In this application when user log in I start new session and save him id in that way $_SESSION['id'] = $id
. How can I use this variable in my iphone application. I think I can use cookies. But when I create cookie in the start of application how can I use value of this cookie in next screen. If you can give some start point, I'd be glad. I'm developing native application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Apple 的 URL 加载系统 访问您的网站,然后您可以通过
NSHTTPCookieStorage
。If you're using Apple's URL Loading System to access your web site, then you get cookie storage and handling for free with
NSHTTPCookieStorage
.