Skip to content

Instantly share code, notes, and snippets.

@chourobin
Created July 26, 2012 13:45
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 chourobin/3182103 to your computer and use it in GitHub Desktop.
Save chourobin/3182103 to your computer and use it in GitHub Desktop.
Custom UIBarButtonItem
@interface UIBarButtonItem(MyCategory)
+ (UIBarButtonItem*)barItemWithImage:(UIImage*)image target:(id)target action:(SEL)action;
@end
@implementation UIBarButtonItem(MyCategory)
+ (UIBarButtonItem*)barItemWithImage:(UIImage*)image target:(id)target action:(SEL)action{
// Move your item creation code here
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment