123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #import <UIKit/UIKit.h>
- #import "REMenuItem.h"
- #import "REMenu.h"
- @interface REMenuItemView : UIView
- @property (weak, readwrite, nonatomic) REMenu *menu;
- @property (weak, readwrite, nonatomic) UIView *separatorView;
- @property (strong, readwrite, nonatomic) UILabel *titleLabel;
- @property (strong, readwrite, nonatomic) UILabel *subtitleLabel;
- @property (strong, readwrite, nonatomic) UIImageView *imageView;
- @property (strong, readwrite, nonatomic) UILabel *badgeLabel;
- @property (strong, readwrite, nonatomic) REMenuItem *item;
- - (id)initWithFrame:(CGRect)frame menu:(REMenu *)menu item:(REMenuItem*) item hasSubtitle:(BOOL)hasSubtitle;
- @end
|