返回顶部
首页 > 资讯 > 移动开发 >iOS如何封装带复制功能的UILabel示例代码
  • 597
分享到

iOS如何封装带复制功能的UILabel示例代码

封装复制uilabel 2022-05-20 12:05:06 597人浏览 薄情痞子
摘要

前言 UILabel继承自UIView是iOS中使用非常频繁的一个视图控件一般用于显示文字。 一:基本使用 1.创建 UILabel *label = [[UILabel

前言

UILabel继承自UIView是iOS中使用非常频繁的一个视图控件一般用于显示文字。

一:基本使用

1.创建


UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(20, 64, 100, 30)];
[self.view addSubview:label];

2.属性设置

ioS中你想要使用一个属性一般就直接“.”属性英文名称,或者“set”属性英文名称一般就可以出现


label.backgroundColor = [UIColor yellowColor];//设置背景颜色
label.textColor = [UIColor redColor];//设置Label上文字的颜色
label.text = @"我是一个UILabel";//设置Label上的文字
label.font = [UIFont systemFontOfSize:15];//设置Label上文字的大小 默认为17
label.textAlignment = NSTextAlignmentCenter;//设置文字位子默认靠左
label.numberOfLines = 0;//设置行数默认为1,当为0时可以就是设置多行
label.font = [UIFont fontWithName:@"Arial" size:30];//设置内容字体和字体大小
label.highlighted = YES;//Label是否高亮

//有时偶尔会使用到阴影设置
label.shadowColor = [UIColor blueColor];//设置阴影颜色
label.shadowOffset = CGSizeMake(10, 10);//设置阴影的偏移

二、在iOS中下面三个控件,自身就有复制-粘贴的功能:

UITextView

UITextField

UIWEBView

在iOS8 之后, 我们发现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 = @"清明时节雨纷纷,路上行人欲断魂。";
 copy.textAlignment = NSTextAlignmentCenter;
 copy.backgroundColor = [UIColor yellowColor];
 copy.textColor = [UIColor redColor];
 copy.font = [UIFont boldSystemFontOfSize:16];
 [self.view addSubview:copy];
}

五、github地址:

https://GitHub.com/gitwangxiancheng/CopyLabel.git

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对编程网的支持。

--结束END--

本文标题: iOS如何封装带复制功能的UILabel示例代码

本文链接: https://lsjlt.com/news/30168.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作