博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 封装一个带复制功能的UILabel
阅读量:5824 次
发布时间:2019-06-18

本文共 1939 字,大约阅读时间需要 6 分钟。

我们发现UILabel不在为我们提供长按弹出复制等操作了, 我们来继承UILabel自己写一个带复制功能的UILabel。

代码:

#import "CopyLabel.h"@implementation CopyLabel- (instancetype)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) { [self pressAction]; } return self;} // 初始化设置- (void)pressAction {
self.userInteractionEnabled = YES; UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressAction:)]; longPress.minimumPressDuration = 0.25; [self addGestureRecognizer:longPress];}// 使label能够成为响应事件- (BOOL)canBecomeFirstResponder { return YES;}// 自定义方法时才显示对就选项菜单,即屏蔽系统选项菜单- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
if (action == @selector(customCopy:)){ return YES; } return NO;}- (void)customCopy:(id)sender {
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; pasteboard.string = self.text;} - (void)longPressAction:(UIGestureRecognizer *)recognizer {
if (recognizer.state == UIGestureRecognizerStateBegan) { [self becomeFirstResponder]; UIMenuItem *copyItem = [[UIMenuItem alloc] initWithTitle:@"拷贝" action:@selector(customCopy:)]; UIMenuController *menuController = [UIMenuController sharedMenuController]; menuController.menuItems = [NSArray arrayWithObjects:copyItem, nil]; [menuController setTargetRect:self.frame inView:self.superview]; [menuController setMenuVisible:YES animated:YES]; }}@end

使用:

- (void)viewDidLoad {   [super viewDidLoad];    CopyLabel *copy = [[CopyLabel alloc] initWithFrame:CGRectMake(0, 100, [UIScreen mainScreen].bounds.size.width,50)];   copy.text = @"一个带复制功能的Label";   copy.textAlignment = NSTextAlignmentCenter;   copy.backgroundColor = [UIColor yellowColor];   copy.textColor = [UIColor redColor];   copy.font = [UIFont boldSystemFontOfSize:16];   [self.view addSubview:copy];}

 

转载于:https://www.cnblogs.com/xuzb/p/9541872.html

你可能感兴趣的文章
环境变量(总结)
查看>>
ios之UILabel
查看>>
Java基础之String,StringBuilder,StringBuffer
查看>>
1月9日学习内容整理:爬虫基本原理
查看>>
安卓中数据库的搭建与使用
查看>>
AT3908 Two Integers
查看>>
渐变色文字
查看>>
C++ 0X 新特性实例(比较常用的) (转)
查看>>
node生成自定义命令(yargs/commander)
查看>>
各种非算法模板
查看>>
node-express项目的搭建并通过mongoose操作MongoDB实现增删改查分页排序(四)
查看>>
如何创建Servlet
查看>>
.NET 设计规范--.NET约定、惯用法与模式-2.框架设计基础
查看>>
win7 64位+Oracle 11g 64位下使用 PL/SQL Developer 的解决办法
查看>>
BZOJ1997:[HNOI2010]PLANAR——题解
查看>>
BZOJ1014:[JSOI2008]火星人prefix——题解
查看>>
使用Unity3D引擎开发赛车游戏
查看>>
HTML5新手入门指南
查看>>
opennebula 开发记录
查看>>
ubuntu 修改hostname
查看>>