// // 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