// // EditWebView.h // BuguLive // // Created by yy on 16/9/22. // Copyright © 2016年 xfg. All rights reserved. // #import @protocol EditWebViewDelegate - (void)viewDown:(UIButton *)sender; @end @interface EditWebView : UIView @property (nonatomic, weak) id delegate; @property (weak, nonatomic) IBOutlet UIButton *comfirmBtn; @property (weak, nonatomic) IBOutlet UIButton *cancelBtn; @property (weak, nonatomic) IBOutlet UITextView *editTextView; @property (weak, nonatomic) IBOutlet UIView *backgroundView; @property (weak, nonatomic) IBOutlet UILabel *titleName; + (instancetype)EditNibFromXib; @end