需要将xcode app链接到我的网站上的用户名/密码数据库

时间:2014-04-04 01:56:41

标签: objective-c

我正在使用xcode中的示例社交媒体应用程序进行练习。我有一个有登录系统的网站。我想知道将数据从我的网站推送/拉到应用程序的最有效方法是什么。我要做的就是制作一个带有用户名和密码框的登录页面,用于检查网站数据库的凭据,如果凭据正确则允许访问下一页,或者如果没有则显示一些输出。只是寻找一个起点。任何帮助将非常感激!谢谢!

1 个答案:

答案 0 :(得分:0)

NSURLSession委托方法

-(void)URLSession:(NSURLSession *)session didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition, NSURLCredential *))completionHandler

是处理身份验证的一种方法。使用NSURLSession,您还可以管理数据/下载任务。另一种方法是使用自定义NSURLRequest HTTP标头/正文处理您的凭据。

看看

https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSURLSession_class/Introduction/Introduction.html

https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSURLSessionDelegate_protocol/Reference/Reference.html