26 lines
739 B
Objective-C
26 lines
739 B
Objective-C
//
|
|
// MyPickerView.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/10/19.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface MyPickerView : UIView
|
|
@property(nonatomic,copy)UIPickerView*picView;
|
|
@property(nonatomic,copy)UIButton*cancleButton;
|
|
@property(nonatomic,copy)UIButton*sureButton;
|
|
|
|
@property(nonatomic,strong)NSArray*picArr;
|
|
@property(nonatomic,copy)NSString*picViewResultString;
|
|
@property(nonatomic,strong)NSMutableArray*componentArray;
|
|
@property(nonatomic)NSInteger component;
|
|
@property(nonatomic)NSString* rowTitle;
|
|
@property(nonatomic)NSInteger row;
|
|
@property(nonatomic,strong)UIImageView*backgroundImage;
|
|
@property(nonatomic)NSInteger heighindex;
|
|
@property(nonatomic)NSInteger lowindex;
|
|
@end
|