ios 复制黏贴板的使用

时间:2025-01-19 19:07:50

在iOS中,可以使用剪贴板实现应用程序之中以及应用程序之间实现数据的共享。比如你可以从iPhone QQ复制一个url,然后粘贴到safari浏览器中查看这个链接的内容。

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

1、UITextView
2、UITextField
3、UIWebView

二、UIKit framework提供了几个类和协议方便我们在自己的应用程序中实现剪贴板的功能。

1、UIPasteboard:我们可以向其中写入数据,也可以读取数据

2、UIMenuController:显示一个快捷菜单,用来复制、剪贴、粘贴选择的项。

3、UIResponder中的 canPerformAction:withSender:用于控制哪些命令显示在快捷菜单中。

4、当快捷菜单上的命令点击的时候,UIResponderStandardEditActions将会被调用。

三、下面这些项能被放置到剪贴板中

1、UIPasteboardTypeListString —  字符串数组, 包含kUTTypeUTF8PlainText
2、UIPasteboardTypeListURL —   URL数组,包含kUTTypeURL
3、UIPasteboardTypeListImage —   图形数组, 包含kUTTypePNG 和kUTTypeJPEG
4、UIPasteboardTypeListColor —   颜色数组

四、剪贴板的类型分为两种:

系统级:使用UIPasteboardNameGeneral和UIPasteboardNameFind创建,系统级的剪贴板,当应用程序关闭,或者卸载时,数据都不会丢失。

应用程序级:通过设置,可以让数据在应用程序关闭之后仍然保存在剪贴板中,但是应用程序卸载之后数据就会失去。我们可用通过pasteboardWithName:create:来创建。

UIMenuController的使用,对UILabel拷贝以及定制菜单

1. Menu所处的View必须实现 – (BOOL)canBecomeFirstResponder, 且返回YES

2. Menu所处的View必须实现 – (BOOL)canPerformAction:withSender, 并根据需求返回YES或NO

3. 使Menu所处的View成为First Responder (becomeFirstResponder)

4. 定位Menu (- setTargetRect:inView:)

5. 展示Menu (- setMenuVisible:animated:)

  1. @implementation UICopyLabel
  2. // default is NO
  3. - (BOOL)canBecomeFirstResponder{
  4. return YES;
  5. }
  6. //"反馈"关心的功能
  7. -(BOOL)canPerformAction:(SEL)action withSender:(id)sender{
  8. return (action == @selector(copy:));
  9. }
  10. //针对于copy的实现
  11. -(void)copy:(id)sender{
  12. UIPasteboard *pboard = [UIPasteboard generalPasteboard];
  13. pboard.string = self.text;
  14. }
  15. //UILabel默认是不接收事件的,我们需要自己添加touch事件
  16. -(void)attachTapHandler{
  17. self.userInteractionEnabled = YES;  //用户交互的总开关
  18. UITapGestureRecognizer *touch = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
  19. touch.numberOfTapsRequired = 2;
  20. [self addGestureRecognizer:touch];
  21. [touch release];
  22. }
  23. //绑定事件
  24. - (id)initWithFrame:(CGRect)frame
  25. {
  26. self = [super initWithFrame:frame];
  27. if (self) {
  28. [self attachTapHandler];
  29. }
  30. return self;
  31. }
  32. //同上
  33. -(void)awakeFromNib{
  34. [super awakeFromNib];
  35. [self attachTapHandler];
  36. }
  37. -(void)handleTap:(UIGestureRecognizer*) recognizer{
  38. [self becomeFirstResponder];
  39. UIMenuController *menu = [UIMenuController sharedMenuController];
  40. [menu setTargetRect:self.frame inView:self.superview];
  41. [menu setMenuVisible:YES animated:YES];
  42. }
  43. @end

在view里添加一个UICopyLabel

现在可以使用UICopyLabel实现双击来对label的内容copy了

在你的view中

UICopyLabel *display = [[UICopyLabelalloc]initWithFrame:CGRectMake(30,100,250,30)];

awakeFromNib

在使用IB的时候才会涉及到此方法的使用,当.nib文件被加载的时候,会发送一个awakeFromNib的消息到.nib文件中的每个对象,每个对象都可以定义自己的awakeFromNib函数来响应这个消息,执行一些必要的操作。

看例子:

创建一个viewController with XIB

定义一个UIView的子类

打开xib,并把View的类型指定为上一步骤定义的子类

然后在TestView.m中加入 awakeFromNib方法,运行程序发现此方法被调用了!!!

 

 

下面我们来定制菜单

attachTapHandler中添加长按压手势

  1. -(void)attachTapHandler{
  2. self.userInteractionEnabled = YES;  //用户交互的总开关
  3. //双击
  4. UITapGestureRecognizer *touch = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
  5. touch.numberOfTapsRequired = 2;
  6. [self addGestureRecognizer:touch];
  7. [touch release];
  8. //长按压
  9. UILongPressGestureRecognizer *press = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(longPress:)];
  10. press.minimumPressDuration = 1.0;
  11. [self addGestureRecognizer:press];
  12. [press release];
  13. }

添加方法longPress

  1. - (void)longPress:(UILongPressGestureRecognizer *)recognizer {
  2. if (recognizer.state == UIGestureRecognizerStateBegan) {
  3. //   TSTableViewCell *cell = (TSTableViewCell *)recognizer.view;
  4. [self becomeFirstResponder];
  5. UIMenuItem *flag = [[UIMenuItem alloc] initWithTitle:@"Flag" action:@selector(flag:)];
  6. UIMenuItem *approve = [[UIMenuItem alloc] initWithTitle:@"Approve" action:@selector(approve:)];
  7. UIMenuItem *deny = [[UIMenuItem alloc] initWithTitle:@"Deny" action:@selector(deny:)];
  8. UIMenuController *menu = [UIMenuController sharedMenuController];
  9. [menu setMenuItems:[NSArray arrayWithObjects:flag, approve, deny, nil]];
  10. [menu setTargetRect:self.frame inView:self.superview];
  11. [menu setMenuVisible:YES animated:YES];
  12. NSLog(@"menuItems:%@",menu.menuItems);
  13. }
  14. }
  15. - (void)flag:(id)sender {
  16. NSLog(@"Cell was flagged");
  17. }
  18. - (void)approve:(id)sender {
  19. NSLog(@"Cell was approved");
  20. }
  21. - (void)deny:(id)sender {
  22. NSLog(@"Cell was denied");
  23. }

修改canPerformAction

  1. -(BOOL)canPerformAction:(SEL)action withSender:(id)sender{
  2. //    return (action == @selector(copy:));
  3. if (action == @selector(copy:)||action == @selector(flag:)||action == @selector(approve:)||action == @selector(deny:)) {
  4. return YES;
  5. }
  6. }

ok。。。效果如图

ios 复制黏贴板的使用

ios 复制黏贴板的使用