// // PickerChoiceView.h // TFPickerView // // Created by TF_man on 16/5/11. // Copyright © 2016年 tituanwang. All rights reserved. // #import @protocol TFPickerDelegate @optional; - (void)PickerSelectorIndixString:(NSString *)str; @end typedef NS_ENUM(NSInteger, ARRAYTYPE) { GenderArray, HeightArray, weightArray, DeteArray }; @interface PickerChoiceView : UIView @property (nonatomic, assign) ARRAYTYPE arrayType; @property (nonatomic, strong) NSArray *customArr; @property (nonatomic,strong)UILabel *selectLb; @property (nonatomic,assign)iddelegate; @end