我正在使用NSURLConnection
从 Web 服务下载一些 JSON,然后显示在UITableView
. 我的所有代码都在视图类中运行良好,但我想知道是否可以NSURLConnection
让其他类使用这些方法?
例如,如下所示:
NSURLConnectionClass *connection = [[NSURLConnectionClass alloc] init];
NSArray *myDataArray = [connection withURL: [NSURL URLWithString: @"http://www.example.com"]];
// Reload table with new data
我意识到这不会起作用,因为 NSURLConnection 是异步的,但想知道是否还有其他可以尝试的方法。我基本上是在尝试避免在每个下载数据的视图中重复代码。