TopSheetView.h 954 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
//
//  TopSheetView.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/8/12.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "HPGrowingTextView.h"

@protocol TopSheetViewDelegate <NSObject>

- (void)hiddenKeyBoard;

@end

@interface TopSheetView : UIView

@property (nonatomic,strong)UITextField *titleTextFiled;//标题
@property (nonatomic,strong)NSString *supplier;//供应商
@property (nonatomic,strong)UITextField *peopleTextFiled;//联系人
@property (nonatomic,strong)UITextField *phoneTextFiled;//电话
@property (nonatomic,strong)NSString *factory;//标题
@property (nonatomic,strong)HPGrowingTextView *remarkTextView;//标题
@property (nonatomic,strong)UIButton *factoryBtn;
@property (nonatomic,strong)UIButton *supplierBtn;
@property (nonatomic,strong)UILabel *factoryLabel;
@property (nonatomic,strong)UILabel *supplierLabel;

@property (nonatomic,weak)id <TopSheetViewDelegate>delegate;



@end