iOS oc-剪切板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS oc-剪切板相关的知识,希望对你有一定的参考价值。

参考技术A 一、自带剪切板操作的原生UI控件

ios的UI系统中,有3个控件自带剪切板操作,分别是UITextField、UITextView与UIWebView。在这些控件的文字交互处进行长按手势可以在屏幕视图上唤出系统的剪切板控件,用户可以进行复制、粘贴,剪切等操作

二、系统的剪切板管理类UIPasteboard

实际上,当用户通过上面的空间进行复制、剪切等操作时,被选中的内容会被存放到系统的剪切板中,并且这个剪切板并不只能存放字符串数据,其还可以进行图片数据与网址URL数据的存放。这个剪切板就是UIPasteboard类,开发者也可以直接通过它来操作数据进行应用内或应用间传值。

UIPasteboard类有3个初始化方法,如下:

//获取系统级别的剪切板

+ (UIPasteboard *)generalPasteboard;

//获取一个自定义的剪切板 name参数为此剪切板的名称 create参数用于设置当这个剪切板不存在时 是否进行创建

+ (nullable UIPasteboard *)pasteboardWithName:(NSString *)pasteboardName create:(BOOL)create;

//获取一个应用内可用的剪切板

+ (UIPasteboard *)pasteboardWithUniqueName;

上面3个初始化方法,分别获取或创建3个级别不同的剪切板,系统级别的剪切板在整个设备中共享,即是应用程序被删掉,其向系统级的剪切板中写入的数据依然在。自定义的剪切板通过一个特定的名称字符串进行创建,它在应用程序内或者同一开发者开发的其他应用程序中可以进行数据共享。第3个方法创建的剪切板等价为使用第2个方法创建的剪切板,只是其名称字符串为nil,它通常用于当前应用内部。

注意:使用第3个方法创建的剪切板默认是不进行数据持久化的,及当应用程序退出后,剪切板中内容将别抹去。若要实现持久化,需要设置persistent属性为YES。

UIPasteboard中常用方法及属性如下:

//剪切板的名称

@property(readonly,nonatomic) NSString *name;

//根据名称删除一个剪切板

+ (void)removePasteboardWithName:(NSString *)pasteboardName;

//是否进行持久化

@property(getter=isPersistent,nonatomic) BOOL persistent;

//此剪切板的改变次数 系统级别的剪切板只有当设备重新启动时 这个值才会清零

@property(readonly,nonatomic) NSInteger changeCount;

下面这些方法用于设置与获取剪切板中的数据:

最新一组数据对象的存取:

/获取剪切板中最新数据的类型

- (NSArray*)pasteboardTypes;

//获取剪切板中最新数据对象是否包含某一类型的数据- (BOOL)containsPasteboardTypes:(NSArray*)pasteboardTypes;

//将剪切板中最新数据对象某一类型的数据取出

- (nullable NSData *)dataForPasteboardType:(NSString *)pasteboardType;

//将剪切板中最新数据对象某一类型的值取出

- (nullable id)valueForPasteboardType:(NSString *)pasteboardType;

//为剪切板中最新数据对应的某一数据类型设置值

- (void)setValue:(id)value forPasteboardType:(NSString *)pasteboardType;

//为剪切板中最新数据对应的某一数据类型设置数据

- (void)setData:(NSData *)data forPasteboardType:(NSString *)pasteboardType;

多组数据对象的存取:

 //数据组数@property(readonly,nonatomic) NSInteger numberOfItems;

//获取一组数据对象包含的数据类型

- (nullable NSArray *)pasteboardTypesForItemSet:(nullable NSIndexSet*)itemSet;

//获取一组数据对象中是否包含某些数据类型

- (BOOL)containsPasteboardTypes:(NSArray*)pasteboardTypes inItemSet:(nullable NSIndexSet *)itemSet;

//根据数据类型获取一组数据对象

- (nullable NSIndexSet *)itemSetWithPasteboardTypes:(NSArray *)pasteboardTypes;

//根据数据类型获取一组数据的值

- (nullable NSArray *)valuesForPasteboardType:(NSString *)pasteboardType inItemSet:(nullable NSIndexSet *)itemSet;

//根据数据类型获取一组数据的NSData数据

- (nullable NSArray *)dataForPasteboardType:(NSString *)pasteboardType inItemSet:(nullable NSIndexSet *)itemSet;

//所有数据对象

@property(nonatomic,copy) NSArray *items;

//添加一组数据对象

- (void)addItems:(NSArray*> *)items;

上面方法中很多需要传入数据类型参数,这些参数是系统定义好的一些字符窜,如下:

//所有字符串类型数据的类型定义字符串数组

UIKIT_EXTERN NSArray*UIPasteboardTypeListString;

//所有URL类型数据的类型定义字符串数组

UIKIT_EXTERN NSArray*UIPasteboardTypeListURL;

//所有图片数据的类型定义字符串数据

UIKIT_EXTERN NSArray*UIPasteboardTypeListImage;

//所有颜色数据的类型定义字符串数组

UIKIT_EXTERN NSArray*UIPasteboardTypeListColor;

相比于上面两组方法,下面这些方法更加面向对象,在开发中使用更加方便与快捷:

//获取或设置剪切板中的字符串数据

@property(nullable,nonatomic,copy) NSString *string;

//获取或设置剪切板中的字符串数组

@property(nullable,nonatomic,copy) NSArray*strings;

//获取或设置剪切板中的URL数据

@property(nullable,nonatomic,copy) NSURL *URL;

//获取或设置剪切板中的URL数组

@property(nullable,nonatomic,copy) NSArray*URLs;

//获取或s何止剪切板中的图片数据

@property(nullable,nonatomic,copy) UIImage *image;

//获取或设置剪切板中的图片数组

@property(nullable,nonatomic,copy) NSArray*images;

//获取或设置剪切板中的颜色数据

@property(nullable,nonatomic,copy) UIColor *color;

//获取或设置剪切板中的颜色数组

@property(nullable,nonatomic,copy) NSArray*colors;

对剪切板的某些操作会触发如下通知:

//剪切板内容发生变化时发送的通知

UIKIT_EXTERN NSString *const UIPasteboardChangedNotification;

//剪切板数据类型键值增加时发送的通知

UIKIT_EXTERN NSString *const UIPasteboardChangedTypesAddedKey;

//剪切板数据类型键值移除时发送的通知

UIKIT_EXTERN NSString *const UIPasteboardChangedTypesRemovedKey;

//剪切板被删除时发送的通知

UIKIT_EXTERN NSString *const UIPasteboardRemovedNotification;

三、复制图片的简单例子

创建一个CopyView

#import "CopyView.h"

@interface CopyView ()

@property (strong, nonatomic) UIImageView* img1;

@property (strong, nonatomic) UIImageView* img2;

@end 

@implementation CopyView

-(UIImageView *)img1  

if (_img1 == nil)    

 _img1 = [[UIImageView alloc] initWithFrame:CGRectMake(10.0f, 20.0f, 100.0f, 100.0f)]; 

   NSString* path = [[NSBundle mainBundle] pathForResource:@"NetworldImage" ofType:@"jpg"];

    _img1.image = [UIImage imageWithContentsOfFile:path]; 

   

return _img1;

 

-(UIImageView *)img2  if (_img2 == nil)  

   _img2 = [[UIImageView alloc] initWithFrame:CGRectMake(CGRectGetMaxX(self.img1.frame)+50.0f, 20.0f, 100.0f, 100.0f)];

    _img2.backgroundColor = [UIColor lightGrayColor]; 

   

return _img2;



 - (instancetype)initWithFrame:(CGRect)frame

  self = [super initWithFrame:frame];

  if (self)  

   self.backgroundColor = [UIColor whiteColor];

    [self addSubview:self.img1];

    [self addSubview:self.img2];

    

return self;

 

-(BOOL)canBecomeFirstResponder

  return YES;



-(BOOL)canPerformAction:(SEL)action withSender:(id)sender

  NSArray* methodNameArr = @[@"copy:",@"cut:",@"select:",@"selectAll:",@"paste:"];

  if ([methodNameArr containsObject:NSStringFromSelector(action)])  

   return YES; 

   

return [super canPerformAction:action withSender:sender];

 

-(void)copy:(id)sender 

 UIPasteboard* pasteboard = [UIPasteboard generalPasteboard];

  [pasteboard setImage:self.img1.image];



 -(void)paste:(id)sender 

 UIPasteboard* pasteboard = [UIPasteboard generalPasteboard];

  self.img2.image = [pasteboard image];

 

-(void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event

[self becomeFirstResponder];

UIMenuController* menuController = [UIMenuController sharedMenuController];

[menuController setTargetRect:self.img1.frame inView:self];

[menuController setMenuVisible:YES animated:YES];



@end

在controller中

#import "ViewController.h"

#import "CopyView.h"

@implementation ViewController

- (void)viewDidLoad

[super viewDidLoad];

CopyView* cv = [[CopyView alloc] initWithFrame:self.view.bounds];

self.view = cv;



@end

UIPasteboard

1、UIPasteboard 简介

  • 顾名思义,UIPasteboard 是剪切板功能,因为 iOS 的原生控件 UITextField、UITextView、UIWebView,
  • 我们在使用时如果长按,就会出现复制、剪切、选中、全选、粘贴等功能,这个就是利用了系统剪切板功能来实现的,
  • 而每一个 App 都可以去访问系统剪切板。

2、pasteboard 的创建

// 获取系统剪切板
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];

// 将 label 的文字存储到剪切板
pasteboard.string = self.label.text;

// 将剪切板的文字赋值给 label
self.label.text = pasteboard.string;

以上是关于iOS oc-剪切板的主要内容,如果未能解决你的问题,请参考以下文章

兼容安卓和ios实现一键复制内容到剪切板

iOS社交分享TwitterFacebook拷贝到剪切板LINE及邮件

js复制剪切板

delphi 获取剪切板内容

剪切板工具:Ditto

# vim与系统剪切板交互