iPhone - 异步调用php页面并确保它已加载

问题描述:

In one of my apps, I'd like to call asynchronously a php page I have written (http://serveradress/page.php?date=20111231), and I would be sure to know if the page could be called (no 404 error, php server down, customised 404 page, missing internet connection, or some things like that). I've planned for that to make the php page return a very simple HTML page with just "OK" in its body or title.

This would be a "phantom" call without use of any UIWebView, or if REALLY nedded, a hidden UIWebView but I'd prefer to avoid this.

Could you help me to write this call ?
And be sure to know if it has been loaded ?

I saw that I should probably use NSURLConnection, but I'm a little bit lost.

Could you help me ?

在我的一个应用程序中,我想异步调用我编写的php页面(http:// serveradress / page.php?date = 20111231),我肯定知道是否可以调用页面(没有404错误,php服务器关闭,自定义404页面,缺少互联网连接或类似的东西)。 我已经计划让php页面返回一个非常简单的HTML页面,其主体或标题只有“OK”。 p>

这将是一个“幽灵”调用而不使用任何 UIWebView,或者如果真的是一个隐藏的UIWebView,但我宁愿避免这种情况。 p>

你能帮我写这个电话吗?
一定要知道它是否可以 已经加载? p>

我看到我应该使用NSURLConnection,但我有点失落。 p>

你能帮帮我吗? / p> div>

NSURLConection is very good solution for asynchronous loading. There are few steps for creating one.

1. Setup your NSURLConnection

- (void)viewDidLoad {
    // your code...
    responseData = [[NSMutableData alloc] init];
    NSURL *url = [NSURL URLWithString:@"http://yourdomain.com/"];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self]];
}

responseData is your NSMutableData iVar.

2. Implement delegate methods

a) In this method we will check for HTTP status codes

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    if ([response respondsToSelector:@selector(statusCode)]) {
        int statusCode = [((NSHTTPURLResponse *)response) statusCode];
        if (statusCode >= 400) {
            [connection cancel]; 
            NSDictionary *errorInfo = [NSDictionary dictionaryWithObject:[NSString stringWithFormat:NSLocalizedString(@"Server returned status code %d",@""),statusCode] forKey:NSLocalizedDescriptionKey];
            NSError *statusError = [NSError errorWithDomain:NSHTTPPropertyStatusCodeKey code:statusCode userInfo:errorInfo];
           [self connection:connection didFailWithError:statusError];
        }
    }
}

b) This creates your NSData component

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    [responseData appendData:data];
}

c) Handles successful url connection

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    // do whatever you want using responseData as your server output
}

d) Handles errors

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
    // handle your error
}

You can get error info using [error userInfo] And display it in UIAlertView, for example.


So as I said NSURLConnection is very good solution, but you should also look at ASIHTTPRequest library. :)