我正在尝试在 iPhone 应用程序中使用 OpenFlow ( http://apparentlogic.com/openflow/ ) 从我的服务器流式传输文件。我怎样才能做到这一点?我应该使用 NSOperationQueue 吗?
到目前为止,我已经能够: * 使用本地文件 * 使用他们来自 Flickr 的演示(它使用 Flickr API 和库)
加载本地图像的代码:
NSString *imageName;
for (int i=0; i < 30; i++) {
imageName = [[NSString alloc] initWithFormat:@"%d.jpg", i];
[(AFOpenFlowView *)self.view setImage:[UIImage imageNamed:imageName] forIndex:i];
[imageName release];
}
[(AFOpenFlowView *)self.view setNumberOfImages:10];