将数据从phpMyAdmin发布到IOS应用程序。

时间:2014-08-05 18:28:57

标签: ios phpmyadmin

我已经看过很多关于如何将IOS应用程序与外部数据库连接的教程,但它们都没有真正展示如何从phpMyAdmin读取数据。我的想法是从phpMyAdmin读取数据并在UITableView中显示它。有人可以给我一些教程如何让我的想法发生,我真的很感激。

1 个答案:

答案 0 :(得分:1)

基本上,您可以使用NSURLConnection(iOS7 +:NSURLSession)来获取服务器上运行的服务输出:

NSString *url = @"http://example.com/path/to/service.php";

NSURLRequest *request = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:url] cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:10000];

[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
    NSError *error;

    if (data) {
       // process the data...
    }


}];

另一个很棒的教程:http://codewithchris.com/iphone-app-connect-to-mysql-database/