一、自带剪切板操作的原生ui控件
在ios的ui系统中,有3个控件自带剪切板操作,分别是uitextfield、uitextview与uiwebview。在这些控件的文字交互处进行长按手势可以在屏幕视图上唤出系统的剪切板控件,用户可以进行复制、粘贴,剪切等操作,其效果分别如下图所示。
uitextfield的文字操作
uitextview的文字操作
二、系统的剪切板管理类uipasteboard
实际上,当用户通过上面的空间进行复制、剪切等操作时,被选中的内容会被存放到系统的剪切板中,并且这个剪切板并不只能存放字符串数据,其还可以进行图片数据与网址url数据的存放。这个剪切板就是uipasteboard类,开发者也可以直接通过它来操作数据进行应用内或应用间传值。
uipasteboard类有3个初始化方法,如下:
1
2
3
4
5
6
|
//获取系统级别的剪切板
+ (uipasteboard *)generalpasteboard;
//获取一个自定义的剪切板 name参数为此剪切板的名称 create参数用于设置当这个剪切板不存在时 是否进行创建
+ (nullable uipasteboard *)pasteboardwithname:(nsstring *)pasteboardname create:( bool )create;
//获取一个应用内可用的剪切板
+ (uipasteboard *)pasteboardwithuniquename;
|
上面3个初始化方法,分别获取或创建3个级别不同的剪切板,系统级别的剪切板在整个设备*享,即是应用程序被删掉,其向系统级的剪切板中写入的数据依然在。自定义的剪切板通过一个特定的名称字符串进行创建,它在应用程序内或者同一开发者开发的其他应用程序中可以进行数据共享。第3个方法创建的剪切板等价为使用第2个方法创建的剪切板,只是其名称字符串为nil,它通常用于当前应用内部。
注意:使用第3个方法创建的剪切板默认是不进行数据持久化的,及当应用程序退出后,剪切板中内容将别抹去。若要实现持久化,需要设置persistent属性为yes。
uipasteboard中常用方法及属性如下:
1
2
3
4
5
6
7
8
|
//剪切板的名称
@property(readonly,nonatomic) nsstring *name;
//根据名称删除一个剪切板
+ ( void )removepasteboardwithname:(nsstring *)pasteboardname;
//是否进行持久化
@property(getter=ispersistent,nonatomic) bool persistent;
//此剪切板的改变次数 系统级别的剪切板只有当设备重新启动时 这个值才会清零
@property(readonly,nonatomic) nsinteger changecount;
|
下面这些方法用于设置与获取剪切板中的数据:
最新一组数据对象的存取:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//获取剪切板中最新数据的类型
- (nsarray<nsstring *> *)pasteboardtypes;
//获取剪切板中最新数据对象是否包含某一类型的数据
- ( bool )containspasteboardtypes:(nsarray<nsstring *> *)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<nsstring *> *)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<nsdictionary<nsstring *, id> *> *)items;
|
上面方法中很多需要传入数据类型参数,这些参数是系统定义好的一些字符窜,如下:
1
2
3
4
5
6
7
8
|
//所有字符串类型数据的类型定义字符串数组
uikit_extern nsarray<nsstring *> *uipasteboardtypeliststring;
//所有url类型数据的类型定义字符串数组
uikit_extern nsarray<nsstring *> *uipasteboardtypelisturl;
//所有图片数据的类型定义字符串数据
uikit_extern nsarray<nsstring *> *uipasteboardtypelistimage;
//所有颜色数据的类型定义字符串数组
uikit_extern nsarray<nsstring *> *uipasteboardtypelistcolor;
|
相比于上面两组方法,下面这些方法更加面向对象,在开发中使用更加方便与快捷:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//获取或设置剪切板中的字符串数据
@property(nullable,nonatomic,copy) nsstring *string;
//获取或设置剪切板中的字符串数组
@property(nullable,nonatomic,copy) nsarray<nsstring *> *strings;
//获取或设置剪切板中的url数据
@property(nullable,nonatomic,copy) nsurl *url;
//获取或设置剪切板中的url数组
@property(nullable,nonatomic,copy) nsarray<nsurl *> *urls;
//获取或s何止剪切板中的图片数据
@property(nullable,nonatomic,copy) uiimage *image;
//获取或设置剪切板中的图片数组
@property(nullable,nonatomic,copy) nsarray<uiimage *> *images;
//获取或设置剪切板中的颜色数据
@property(nullable,nonatomic,copy) uicolor *color;
//获取或设置剪切板中的颜色数组
@property(nullable,nonatomic,copy) nsarray<uicolor *> *colors;
对剪切板的某些操作会触发如下通知:
//剪切板内容发生变化时发送的通知
uikit_extern nsstring * const uipasteboardchangednotification;
//剪切板数据类型键值增加时发送的通知
uikit_extern nsstring * const uipasteboardchangedtypesaddedkey;
//剪切板数据类型键值移除时发送的通知
uikit_extern nsstring * const uipasteboardchangedtypesremovedkey;
//剪切板被删除时发送的通知
uikit_extern nsstring * const uipasteboardremovednotification;
|
三、复制图片的简单例子
创建一个copyview
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#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<uitouch *> *)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
|
效果展示