29 lines
686 B
Objective-C
29 lines
686 B
Objective-C
//
|
|
// XuToWenDuPicview.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/5/6.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
//炫多 加热棒温度选择器
|
|
@interface XuToWenDuPicview : UIView
|
|
|
|
@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
|