| 1234567891011121314151617181920212223242526272829303132 |
- //
- // MenuItem.m
- // CommonLibrary
- //
- // Created by Alexi on 14-1-16.
- // Copyright (c) 2014年 CommonLibrary. All rights reserved.
- //
- #import "MenuItem.h"
- @implementation MenuItem
- - (instancetype)initWithTitle:(NSString *)title icon:(UIImage *)icon action:(MenuAction)action
- {
- if (self = [super init])
- {
- self.title = title;
- self.icon = icon;
- self.action = action;
- }
- return self;
- }
- - (void)menuAction
- {
- if (_action)
- {
- _action(self);
- }
- }
- @end
|