我決定編程一個iPhone應用程序,看看它是多麼容易。我已經完成大部分,除了這部分編碼的,請大家幫忙:預計標識符]在xcode
#import "ViewController.h"
@interface ViewController()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
//1
NSString *urlString = @"http://zaphod_beeblebrox.pythonanywhere.com/";
//2
NSURL *url = [NSURL URLWithString:urlString];
//3
NSURLRequest *request = [NSURLRequest requestWithURL:url];
//4
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
//5
[NSURLConnection sendAsynchronousRequest:request queue:queue
completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
if ([data length] > 0 && error == nil) [UIWebView]
else if (error != nil) NSLog(@"Error: %@", error);
}];
}
@end
什麼是錯誤,它位於何處,您嘗試了什麼以及您打算做什麼? – AliSoftware
你想用[UIWebView]做什麼?正如@AliSoftware所說,這沒有任何意義 - 替換它取決於你想要做什麼。 – rdelmar