iOS开发之复制字符串到剪贴板
概述
详细
一、主要思路
1.在 View 里贴上scrollView
2.在scrollView里贴上 UITextView,用于上下滑动展示完整数据
二、程序实现
1、在 View 里贴上scrollView
- - (void)setupUI {
- CGFloat marginX = 15;
- CGFloat cellH = 50;
- CGFloat btnW = 70;
- CGFloat btnH = 30;
- // 邀请链接
- UIView *linkView2 = [[UIView alloc] init];
- linkView2.backgroundColor = [UIColor whiteColor];
- linkView2.frame = CGRectMake(0, 100, UI_View_Width, cellH);
- [self.view addSubview:linkView2];
- // 邀请链接label
- UILabel *linkLabel2 = [[UILabel alloc] init];
- linkLabel2.backgroundColor = [UIColor clearColor];
- linkLabel2.frame = CGRectMake(marginX, -1, 60, cellH);
- linkLabel2.text = @"邀请链接";
- linkLabel2.font = [UIFont systemFontOfSize:14];
- linkLabel2.textColor = ZLColor(102, 102, 102);
- [linkView2 addSubview:linkLabel2];
- // 复制按钮
- UIButton *copyBtn = [UIButton buttonWithType:UIButtonTypeCustom];
- [copyBtn setTitle:@"复制" forState:UIControlStateNormal];
- copyBtn.frame = CGRectMake(UI_View_Width - marginX - btnW, (cellH - btnH) * 0.5, btnW, btnH);
- copyBtn.titleLabel.font = [UIFont systemFontOfSize:12];
- [copyBtn addTarget:self action :@selector(copylinkBtnClick) forControlEvents:UIControlEventTouchUpInside];
- copyBtn.backgroundColor = [UIColor whiteColor];
- [copyBtn setTitleColor:ZLColor(108, 187, 82) forState:UIControlStateNormal];
- copyBtn.layer.borderColor = ZLColor(108, 187, 82).CGColor;
- copyBtn.layer.cornerRadius = 3.0;
- copyBtn.layer.borderWidth = 1.0f;
- [linkView2 addSubview:copyBtn];
- // 滑动邀请链接
- UIScrollView *scrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(CGRectGetMaxX(linkLabel2.frame), 0, UI_View_Width - 60 - btnW - marginX * 2, cellH)];
- scrollView.showsHorizontalScrollIndicator = NO;
- scrollView.showsHorizontalScrollIndicator = NO;
- scrollView.bounces = NO;
- [linkView2 addSubview:scrollView];
- UITextView *link = [[UITextView alloc]initWithFrame:CGRectMake(0, 0, UI_View_Width - 60 - btnW - marginX * 2, 50)];
- link.text = @"wwww.ujfwegertkyluiopafsdfghnlrjkliop[sdfghjklertyui测试测试滚动测试测试滚动测试测试滚动测试测试滚动测试测试滚动";
- link.textColor = [UIColor grayColor];
- link.textContainer.maximumNumberOfLines = 1;
- link.scrollEnabled = YES;//是否可以拖动
- link.editable = NO;//禁止编辑
- [scrollView addSubview:link];
- scrollView.contentSize = CGSizeMake(CGRectGetWidth(link.bounds), 50);
- self.link = link;
- }
2、在scrollView里贴上 UITextView,用于上下滑动展示完整数据
- #pragma mark - 按钮点击事件操作
- /**
- * 复制链接
- */
- - (void)copylinkBtnClick {
- NSLog(@"复制内容: %@", self.link.text);
- UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
- pasteboard.string = self.link.text;
- }
三、压缩文件截图及运行效果
1、压缩文件截图
2、当显示过多则滚动显示的运行时的截图
四、其他补充
界面性问题可以根据自己项目需求调整即可, 具体可参考代码, 项目能够直接运行!
注:本文著作权归作者,由demo大师发表,拒绝转载,转载需要作者授权
iOS开发之复制字符串到剪贴板的更多相关文章
- ios-复制字符串到剪贴板
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; pasteboard.string = self.label.text;
- android 复制字符串到剪贴板
public static void CopyToClipboard(Context context,String text){ ClipboardManager clip = (ClipboardM ...
- iOS开发之--复制粘贴功能
复制粘贴功能,代码如下: 1.复制功能 UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; pasteboard.string = ...
- iOS开发 Date转字符串
+ (NSString *)formatterDate:(NSNumber *)desDate WithDateFormatter:(NSString *)formatter{ NSDateForma ...
- IOS 开发中判断字符串是否为空字符的方法
NSUInteger是无符号的整型, NSInteger是有符号的整型,在表视图应用中常见 NSUInteger row= [indexPath row];因为这是显示tableViewCell有多少 ...
- ios开发之--复制到剪切板
仅做记录: UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; pasteboard.string = @"你好&quo ...
- IOS开发基础知识--碎片16
1:Objective-C语法之动态类型(isKindOfClass, isMemberOfClass,id) 对象在运行时获取其类型的能力称为内省.内省可以有多种方法实现. 判断对象类型 -(BOO ...
- IOS开发基础知识碎片-导航
1:IOS开发基础知识--碎片1 a:NSString与NSInteger的互换 b:Objective-c中集合里面不能存放基础类型,比如int string float等,只能把它们转化成对象才可 ...
- iOS开发——总结篇&IOS开发基础知识
IOS开发基础知识 1:Objective-C语法之动态类型(isKindOfClass, isMemberOfClass,id) 对象在运行时获取其类型的能力称为内省.内省可以有多种方法实现. 判断 ...
随机推荐
- 7. python 字符串格式化方法(1)
7. python 字符串格式化方法(1) 承接上一章节,我们这一节来说说字符串格式化的另一种方法,就是调用format() >>> template='{0},{1} and {2 ...
- Arcgis Runtime for andriod 100 加载geodatabase
private void LoadMY(){ try { String mainGeodatabaseFilePath = YLPub.getMapData() + "/gismap/sl. ...
- Ext BoxComponent
Ext.BoxComponent也是一个比较重要的基础类,它直接继承自Ext.Component,并实现了定位和控制自身大小的功能. 可以使用pageX.pageY.x.y为Ext.BoxCompon ...
- linux-修改时区时间
所有笔记基于-CentOS release 6.8 (Final) ntpdate 202.120.2.101 同步上海时间 cp -f /usr/share/zoneinfo/Asia/Shangh ...
- easyui中使用的遮罩层
easyui 的 dialog 是继承自 window的,而 window中有modal这样的属性(见参考资料),就是用于打开模态的窗口的,也就是你说的有遮罩层的窗口.所以不需要额外的代码,仅需在di ...
- ubuntu12.04-server版 倒腾
前面的话: 第一份工作,在阿里巴巴干了一年零四个月不到几天,来到百度上海.从运维岗转到开发岗.从前端业务线转到后段数据线,基本上算从头开始,给自己鼓个劲. 进到正题,公司发了笔记本,自己原来那个破笔记 ...
- Substring with Concatenation of All Words leetcode java
题目: You are given a string, S, and a list of words, L, that are all of the same length. Find all sta ...
- Valid Parentheses leetcode java
题目: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the ...
- Bootstrap学习js插件篇之下拉菜单
案例 通过此插件可以为几乎所有东西添加下拉菜单,包括导航条.标签页.胶囊式按钮. 用于导航条 导航条分为四个部分.第一部分导航头,第二部分导航列,第三部分form查询表单,第四部分导航列. <n ...
- 一步步教你如何在 Visual Studio 2013 上使用 Github
介绍 我承认越是能将事情变简单的工具我越会更多地使用它.尽管我已经知道了足够的命令来使用Github,但我宁愿它被集成到IDE中.在本教程中,我会告诉你使用Visual Studio 2013如何实现 ...