IGLDropDownItem.h 550 B

123456789101112131415161718192021222324
  1. //
  2. // IGLDropDownItem.h
  3. // IGLDropDownMenuDemo
  4. //
  5. // Created by Galvin Li on 8/30/14.
  6. // Copyright (c) 2014 Galvin Li. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface IGLDropDownItem : UIControl
  10. @property (nonatomic, assign) NSInteger index;
  11. @property (nonatomic, strong) UIImage *iconImage;
  12. @property (nonatomic, strong) id object;
  13. @property (nonatomic, copy) NSString *text;
  14. @property (nonatomic, strong, readonly) UILabel *textLabel;
  15. @property (nonatomic, assign) CGFloat paddingLeft;
  16. - (id)copyWithZone:(NSZone *)zone;
  17. @end