2011-12-08 71 views

回答

1

我想通了。我們可以使用TTPhotoViewController的實例變量centerImageIndex。這會給我們當前圖像的索引。

2

我做了這樣的不同。我的照片源使用JSON數據生成,所以我無法使用上面的方法,因爲每次都有不同的照片來源。相反,我使用TTPhoto上的URLForVersion方法將圖像下載到UIImage中。

NSURL *imageURL = [NSURL URLWithString:[self.centerPhoto URLForVersion:TTPhotoVersionLarge]]; 
NSData *imageData = [NSData dataWithContentsOfURL:imageURL]; 
UIImage *image = [UIImage imageWithData:imageData]; 
相關問題