EditWebView.h 665 B

12345678910111213141516171819202122232425262728
  1. //
  2. // EditWebView.h
  3. // BuguLive
  4. //
  5. // Created by yy on 16/9/22.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol EditWebViewDelegate <NSObject>
  10. - (void)viewDown:(UIButton *)sender;
  11. @end
  12. @interface EditWebView : UIView
  13. @property (nonatomic, weak) id<EditWebViewDelegate> delegate;
  14. @property (weak, nonatomic) IBOutlet UIButton *comfirmBtn;
  15. @property (weak, nonatomic) IBOutlet UIButton *cancelBtn;
  16. @property (weak, nonatomic) IBOutlet UITextView *editTextView;
  17. @property (weak, nonatomic) IBOutlet UIView *backgroundView;
  18. @property (weak, nonatomic) IBOutlet UILabel *titleName;
  19. + (instancetype)EditNibFromXib;
  20. @end