MyDrop.h 620 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MyDrop.h
  3. // test1107
  4. //
  5. // Created by apple on 15/11/10.
  6. // Copyright (c) 2015年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol DropDelegate;
  10. @interface MyDrop : UIView
  11. @property(assign)id<DropDelegate> delegate;
  12. @property(assign)CGFloat cellH;
  13. @property(assign)CGFloat cellW;
  14. @property(nonatomic,strong)NSArray* firArr;
  15. @property(nonatomic,strong)NSArray* secArr;
  16. -(void)setPlaceHolder:(NSString*)str;
  17. @end
  18. @protocol DropDelegate <NSObject>
  19. /**当下拉菜单获取选择结果时,把结果传给代理人
  20. */
  21. -(void)didGetResult1:(NSString*)result andResult2:(NSString*)str2;
  22. @end