我正在使用TTPhotoViewController在照片浏览器中显示图片。
我尝试更改用户界面并删除导航栏中的“全部查看”按钮,但我没有成功。
答案 0 :(得分:1)
是的,我自己试图这样做,覆盖视图方法并设置导航栏没有帮助。
如果您删除了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; }