MenuItem.h 452 B

123456789101112131415161718192021222324
  1. //
  2. // MenuItem.h
  3. // CommonLibrary
  4. //
  5. // Created by Alexi on 14-1-16.
  6. // Copyright (c) 2014年 CommonLibrary. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "MenuAbleItem.h"
  10. @interface MenuItem : NSObject<MenuAbleItem>
  11. {
  12. @protected
  13. NSString *_title;
  14. UIImage *_icon;
  15. }
  16. @property (nonatomic, copy) NSString *title;
  17. @property (nonatomic, strong) UIImage *icon;
  18. @property (nonatomic, copy) MenuAction action;
  19. @end