2011-11-09 77 views
0

我正在使用TTPhotoViewController在照片查看器中顯示圖像。更改TTPhotoViewController UI

我試圖改變用戶界面,並刪除導航欄中的「查看所有」按鈕,但我沒有成功做到這一點。

回答

0

是的,我試圖自己做,覆蓋視圖方法和設置導航欄不起作用。

如果刪除了負責在TTPhotoViewController.m代碼就會然而工作:

if (_photoSource.numberOfPhotos > 1) { 
    self.navigationItem.rightBarButtonItem = 
    [[[UIBarButtonItem alloc] initWithTitle:TTLocalizedString(@"See All", 
                  @"See all photo thumbnails") 
            style:UIBarButtonItemStyleBordered 
            target:self 
            action:@selector(showThumbnails)] 
    autorelease]; 

} else { 
    self.navigationItem.rightBarButtonItem = nil; 
}