如何从带有xcode的url文本到字符串

时间:2011-04-20 06:42:19

标签: xcode url text xcode3.2

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现在是一个不推荐使用的函数。另外它像魅力一样工作

1 个答案:

答案 0 :(得分:0)

你可以使用 -

NSData *data = [NSData dataWithContentsOfURL:url];

正如文件所述

使用NSURLConnection代替此方法。