MWPhotoBrowser
MWPhotoBrowser copied to clipboard
How to Change Grid View Navigation Title
Hi, i need to change grid view's navigation title. I have tried:
self.title = "NewTitle"
self.navigationController.title = "NewTitle"
But these don't work. Any suggestions?
Anyone?
Maybe you should look over the updateNavigation method in MWPhotoBrowser.m.
In MWPhotoBrowser.m search for method:
- (void)updateNavigation comment this self.title = [NSString stringWithFormat:@"%lu %@", (unsigned long)numberOfPhotos, photosText];
and add self.title = @"Photos";