UIBarButtonItem+Extension.h 344 B

123456789101112131415
  1. //
  2. // UIBarButtonItem+Extension.h
  3. // 黑马微博2期
  4. //
  5. // Created by apple on 14-10-7.
  6. // Copyright (c) 2014年 heima. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIBarButtonItem (Extension)
  10. + (UIBarButtonItem *)itemWithTarget:(id)target action:(SEL)action image:(NSString *)image highImage:(NSString *)highImage;
  11. @end