NSURL *url;
NSData *data;
NSString *blork;
url = [NSURL URLWithString: @"http://www.mycompanyaddress.com/identity_check.jsp?cliId=A-00000&security_key=00000"];
data = [url resourceDataUsingCache: NO];
blork = [[NSString alloc] initWithData: data encoding: NSASCIIStringEncoding];
UIAlertView *testMessage = [[UIAlertView alloc] initWithTitle: @"From Server: " message: blork delegate: self cancelButtonTitle: @"Ok" otherButtonTitles: nil];
[testMessage show];
[testMessage release];
RESOURCEDATAUSINGCACHE现在是一个不推荐使用的函数。另外它像魅力一样工作
答案 0 :(得分:0)
你可以使用 -
NSData *data = [NSData dataWithContentsOfURL:url];
正如文件所述
使用NSURLConnection
代替此方法。