概述

一般有邀请复制链接需求功能,把字符串复制到系统剪贴板,供用户粘贴使用链接.

详细

一、主要思路

  • 1.在 View 里贴上scrollView

  • 2.在scrollView里贴上 UITextView,用于上下滑动展示完整数据

二、程序实现

1、在 View 里贴上scrollView

  1. - (void)setupUI {
  2.  
  3. CGFloat marginX = 15;
  4. CGFloat cellH = 50;
  5. CGFloat btnW = 70;
  6. CGFloat btnH = 30;
  7.  
  8. // 邀请链接
  9. UIView *linkView2 = [[UIView alloc] init];
  10. linkView2.backgroundColor = [UIColor whiteColor];
  11. linkView2.frame = CGRectMake(0, 100, UI_View_Width, cellH);
  12. [self.view addSubview:linkView2];
  13. // 邀请链接label
  14. UILabel *linkLabel2 = [[UILabel alloc] init];
  15. linkLabel2.backgroundColor = [UIColor clearColor];
  16. linkLabel2.frame = CGRectMake(marginX, -1, 60, cellH);
  17. linkLabel2.text = @"邀请链接";
  18. linkLabel2.font = [UIFont systemFontOfSize:14];
  19. linkLabel2.textColor = ZLColor(102, 102, 102);
  20. [linkView2 addSubview:linkLabel2];
  21. // 复制按钮
  22. UIButton *copyBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  23. [copyBtn setTitle:@"复制" forState:UIControlStateNormal];
  24. copyBtn.frame = CGRectMake(UI_View_Width - marginX - btnW, (cellH - btnH) * 0.5, btnW, btnH);
  25. copyBtn.titleLabel.font = [UIFont systemFontOfSize:12];
  26. [copyBtn addTarget:self action :@selector(copylinkBtnClick) forControlEvents:UIControlEventTouchUpInside];
  27. copyBtn.backgroundColor = [UIColor whiteColor];
  28. [copyBtn setTitleColor:ZLColor(108, 187, 82) forState:UIControlStateNormal];
  29. copyBtn.layer.borderColor = ZLColor(108, 187, 82).CGColor;
  30. copyBtn.layer.cornerRadius = 3.0;
  31. copyBtn.layer.borderWidth = 1.0f;
  32. [linkView2 addSubview:copyBtn];
  33.  
  34. // 滑动邀请链接
  35. UIScrollView *scrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(CGRectGetMaxX(linkLabel2.frame), 0, UI_View_Width - 60 - btnW - marginX * 2, cellH)];
  36. scrollView.showsHorizontalScrollIndicator = NO;
  37. scrollView.showsHorizontalScrollIndicator = NO;
  38. scrollView.bounces = NO;
  39. [linkView2 addSubview:scrollView];
  40.  
  41. UITextView *link = [[UITextView alloc]initWithFrame:CGRectMake(0, 0, UI_View_Width - 60 - btnW - marginX * 2, 50)];
  42. link.text = @"wwww.ujfwegertkyluiopafsdfghnlrjkliop[sdfghjklertyui测试测试滚动测试测试滚动测试测试滚动测试测试滚动测试测试滚动";
  43. link.textColor = [UIColor grayColor];
  44. link.textContainer.maximumNumberOfLines = 1;
  45. link.scrollEnabled = YES;//是否可以拖动
  46. link.editable = NO;//禁止编辑
  47. [scrollView addSubview:link];
  48. scrollView.contentSize = CGSizeMake(CGRectGetWidth(link.bounds), 50);
  49. self.link = link;
  50. }

2、在scrollView里贴上 UITextView,用于上下滑动展示完整数据

  1. #pragma mark - 按钮点击事件操作
  2.  
  3. /**
  4. * 复制链接
  5. */
  6. - (void)copylinkBtnClick {
  7.  
  8. NSLog(@"复制内容: %@", self.link.text);
  9.  
  10. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  11. pasteboard.string = self.link.text;
  12. }

三、压缩文件截图及运行效果

1、压缩文件截图

2、当显示过多则滚动显示的运行时的截图

四、其他补充

界面性问题可以根据自己项目需求调整即可, 具体可参考代码, 项目能够直接运行!

注:本文著作权归作者,由demo大师发表,拒绝转载,转载需要作者授权

iOS开发之复制字符串到剪贴板的更多相关文章

  1. ios-复制字符串到剪贴板

    UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; pasteboard.string = self.label.text;

  2. android 复制字符串到剪贴板

    public static void CopyToClipboard(Context context,String text){ ClipboardManager clip = (ClipboardM ...

  3. iOS开发之--复制粘贴功能

    复制粘贴功能,代码如下: 1.复制功能 UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; pasteboard.string = ...

  4. iOS开发 Date转字符串

    + (NSString *)formatterDate:(NSNumber *)desDate WithDateFormatter:(NSString *)formatter{ NSDateForma ...

  5. IOS 开发中判断字符串是否为空字符的方法

    NSUInteger是无符号的整型, NSInteger是有符号的整型,在表视图应用中常见 NSUInteger row= [indexPath row];因为这是显示tableViewCell有多少 ...

  6. ios开发之--复制到剪切板

    仅做记录: UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; pasteboard.string = @"你好&quo ...

  7. IOS开发基础知识--碎片16

    1:Objective-C语法之动态类型(isKindOfClass, isMemberOfClass,id) 对象在运行时获取其类型的能力称为内省.内省可以有多种方法实现. 判断对象类型 -(BOO ...

  8. IOS开发基础知识碎片-导航

    1:IOS开发基础知识--碎片1 a:NSString与NSInteger的互换 b:Objective-c中集合里面不能存放基础类型,比如int string float等,只能把它们转化成对象才可 ...

  9. iOS开发——总结篇&IOS开发基础知识

    IOS开发基础知识 1:Objective-C语法之动态类型(isKindOfClass, isMemberOfClass,id) 对象在运行时获取其类型的能力称为内省.内省可以有多种方法实现. 判断 ...

随机推荐

  1. 7. python 字符串格式化方法(1)

    7. python 字符串格式化方法(1) 承接上一章节,我们这一节来说说字符串格式化的另一种方法,就是调用format() >>> template='{0},{1} and {2 ...

  2. Arcgis Runtime for andriod 100 加载geodatabase

    private void LoadMY(){ try { String mainGeodatabaseFilePath = YLPub.getMapData() + "/gismap/sl. ...

  3. Ext BoxComponent

    Ext.BoxComponent也是一个比较重要的基础类,它直接继承自Ext.Component,并实现了定位和控制自身大小的功能. 可以使用pageX.pageY.x.y为Ext.BoxCompon ...

  4. linux-修改时区时间

    所有笔记基于-CentOS release 6.8 (Final) ntpdate 202.120.2.101 同步上海时间 cp -f /usr/share/zoneinfo/Asia/Shangh ...

  5. easyui中使用的遮罩层

    easyui 的 dialog 是继承自 window的,而 window中有modal这样的属性(见参考资料),就是用于打开模态的窗口的,也就是你说的有遮罩层的窗口.所以不需要额外的代码,仅需在di ...

  6. ubuntu12.04-server版 倒腾

    前面的话: 第一份工作,在阿里巴巴干了一年零四个月不到几天,来到百度上海.从运维岗转到开发岗.从前端业务线转到后段数据线,基本上算从头开始,给自己鼓个劲. 进到正题,公司发了笔记本,自己原来那个破笔记 ...

  7. 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 ...

  8. Valid Parentheses leetcode java

    题目: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the ...

  9. Bootstrap学习js插件篇之下拉菜单

    案例 通过此插件可以为几乎所有东西添加下拉菜单,包括导航条.标签页.胶囊式按钮. 用于导航条 导航条分为四个部分.第一部分导航头,第二部分导航列,第三部分form查询表单,第四部分导航列. <n ...

  10. 一步步教你如何在 Visual Studio 2013 上使用 Github

    介绍 我承认越是能将事情变简单的工具我越会更多地使用它.尽管我已经知道了足够的命令来使用Github,但我宁愿它被集成到IDE中.在本教程中,我会告诉你使用Visual Studio 2013如何实现 ...