我对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从网上加载的内容?
答案 0 :(得分:0)
我会在TTPhotoViewController
loadImages
选择器中设置断点。
每张照片都与TTPhotoView
相关联,loadImages
负责创建所有这些观看次数。
从那里,你可能会想到发生了什么......