一、效果图
二、 会用到的几个类
/**
1、UIPasteboard:可以读写数据
+ (UIPasteboard *)generalPasteboard; ------- 创建
2、UIMenuController:用来显示"复制"、“剪切”等选项的菜单
+ (UIMenuController *)sharedMenuController; ------ 创建
- (void)setMenuVisible:(BOOL)menuVisible animated:(BOOL)animated; ---- 通过动画显示或者隐藏
- (void)setTargetRect:(CGRect)targetRect inView:(UIView *)targetView; ----targetRect menu需要显示的矩形区域 targetView targetRect会以targetView的左上角为坐标原点进行显示
3、UIResponder:指定该UICopyLabel可以响应的方法(这里只需要使用复制)
- (BOOL)canPerformAction:(SEL)action withSender:(nullable id)sender;
*/
三、代码
UICopyLabel.h
#import <UIKit/UIKit.h>
@interface UICopyLabel : UILabel
/