29 lines
694 B
Objective-C
29 lines
694 B
Objective-C
//
|
|
// remindCyclePic.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/3/17.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface remindCyclePic : UIView
|
|
@property(nonatomic,copy)UIButton*cancleBtn;
|
|
@property(nonatomic,copy)UIButton*sureBtn
|
|
;
|
|
@property(nonatomic,copy)UIPickerView*pic;
|
|
@property(nonatomic,strong)UIImageView*picBackImg;
|
|
@property(nonatomic,strong)NSMutableArray*componentArray;
|
|
@property(nonatomic,strong)NSArray*picArr;
|
|
|
|
@property(nonatomic)NSInteger component;
|
|
@property(nonatomic)NSString* rowTitle;
|
|
@property(nonatomic)NSInteger row;
|
|
@property(nonatomic,copy)NSString*picViewResultString;
|
|
|
|
@property(nonatomic,copy)NSString*picString;
|
|
|
|
|
|
@end
|