使用Thre20 PhotoBrowser从Web加载图像

时间:2011-05-20 16:07:07

标签: iphone image three20

我对Three20库的PhotoBrowser有一个奇怪的问题。我正在使用此代码从网络加载图片:

self.photoSource = [[PhotoSource alloc]
initWithType:PhotoSourceNormal
title:@"JamesD Flyer"
photos:[[NSArray alloc] initWithObjects:
[[[Photo alloc] initWithURL:@"http://farm4.static.flickr.com/3444/3223645618_13fe36887a_o.jpg"                                 smallURL:nil
size:CGSizeMake(320, 480)] autorelease],
[[[Photo alloc] initWithURL:@"http://www.james-dean.at/mainpage/flyer/2.jpg"
smallURL:nil  
size:CGSizeMake(409, 591)] autorelease],
[[[Photo alloc] initWithURL:@"http://www.james-dean.at/mainpage/flyer/1.jpg"
smallURL:nil  
size:CGSizeMake(409, 591)] autorelease],nil] photos2:nil];

图像1和3正在加载而没有任何问题,但2不是,我不知道为什么。它具有相同的尺寸和分辨率,但仍然没有加载。 有没有办法追踪iPhone从网上加载的内容?

1 个答案:

答案 0 :(得分:0)

我会在TTPhotoViewController loadImages选择器中设置断点。

每张照片都与TTPhotoView相关联,loadImages负责创建所有这些观看次数。

从那里,你可能会想到发生了什么......