views:

31

answers:

1

How can i grab the current view's navigation title and store it in a variable for use in my code?

thanks

+2  A: 

Simple:

NSString *navTitle = self.navigationItem.title;
Jacob Relkin