PasteView.h 923 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // PasteView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/6/29.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol PasteViewDelegate <NSObject>
  10. //取消,粘贴,x的代理事件
  11. - (void)sentPasteWithIndex:(int)index withShareIndex:(int)shareIndex;
  12. //点击空白的地方去除改视图
  13. - (void)deletePasteView;
  14. @end
  15. @interface PasteView : UIView
  16. @property (weak, nonatomic) IBOutlet UIView *buttomView;
  17. @property (nonatomic, weak) id<PasteViewDelegate>delegate;
  18. @property (weak, nonatomic) IBOutlet UIButton *cancelButton;
  19. @property (weak, nonatomic) IBOutlet UILabel *contentlabel;
  20. @property (weak, nonatomic) IBOutlet UIButton *pasteButton;
  21. @property (weak, nonatomic) IBOutlet UIButton *deleteButton;
  22. @property (weak, nonatomic) IBOutlet UIView *lineView1;
  23. @property (weak, nonatomic) IBOutlet UIView *lineView2;
  24. @property (nonatomic, assign) int shareIndex;
  25. @end