Skip to content

Instantly share code, notes, and snippets.

@douglashill
Created September 13, 2015 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save douglashill/c144f0a37405ab187515 to your computer and use it in GitHub Desktop.
Save douglashill/c144f0a37405ab187515 to your computer and use it in GitHub Desktop.
A useful description method for UINavigationItem
@implementation UINavigationItem (DHDescription)
- (NSString *)description {
return [self dictionaryWithValuesForKeys:@[@"title", @"titleView", @"prompt", @"hidesBackButton", @"backBarButtonItem", @"leftItemsSupplementBackButton", @"leftBarButtonItems", @"rightBarButtonItems"]].description;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment