I am setting the values of the title and back button in the UINavigationBar as follows:
UINavigationBar
self.navigationItem.title = @\"Post\"; [self.navigationC
Off of the top of my head. Try something like this
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(goBack:)]; tap.numberOfTapsRequired = 1; [self.navigationItem.backBarButtonItem addGestureRecognizer:tap];