OpenFlow :: Howto Stream图像

时间:2010-01-20 03:52:13

标签: iphone objective-c coverflow nsoperationqueue

我正在尝试在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]; 

1 个答案:

答案 0 :(得分:0)

我也需要这样做。

我打算尝试这个博客的建议:

http://blogs.oreilly.com/digitalmedia/2008/02/creating-an-uiimage-from-a-url.html

看看它是否适合你!