MWPhotoBrowser icon indicating copy to clipboard operation
MWPhotoBrowser copied to clipboard

How to Change Grid View Navigation Title

Open yasinbor opened this issue 8 years ago • 3 comments

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?

yasinbor avatar Nov 10 '16 07:11 yasinbor

Anyone?

yasinbor avatar Nov 15 '16 14:11 yasinbor

Maybe you should look over the updateNavigation method in MWPhotoBrowser.m.

githubLittleCode avatar Nov 16 '16 03:11 githubLittleCode

In MWPhotoBrowser.m search for method:

  • (void)updateNavigation comment this self.title = [NSString stringWithFormat:@"%lu %@", (unsigned long)numberOfPhotos, photosText];

and add self.title = @"Photos";

MubeenQazi avatar Jan 23 '17 09:01 MubeenQazi