前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >对UILabel添加UIMenuController扩展

对UILabel添加UIMenuController扩展

作者头像
czjwarrior
发布2018-05-28 11:11:32
5930
发布2018-05-28 11:11:32
举报
文章被收录于专栏:岑志军的专栏岑志军的专栏

一、UIMenuController认识

1、默认情况下,UITextView / UITextFiled / UIWebView 都有苹果自带的有UIMenuController功能

二、对UILabel添加UIMenuController扩展

2、新建一个SSCopyLabel,继承UIlabel,.m文件如下:

代码语言:javascript
复制
#import "SSCopyLabel.h"

@implementation SSCopyLabel

- (instancetype)initWithFrame:(CGRect)frame{
    self = [super initWithFrame:frame];
    if (self) {
        self.userInteractionEnabled = YES;
        UILongPressGestureRecognizer *touch = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
        [self addGestureRecognizer:touch];
    }
    return self;
}

-(void)handleTap:(UIGestureRecognizer*) recognizer {

    [self becomeFirstResponder];
    // 1.获得菜单 menu
    UIMenuController *menu = [UIMenuController sharedMenuController];
    // 2.设置菜单最终显示的位置
    [menu setTargetRect:self.frame inView:self.superview];
    UIMenuItem *menuItem = [[UIMenuItem alloc] initWithTitle:@"粘贴" action:@selector(pasteAction)];

    menu.menuItems = [NSArray arrayWithObjects:menuItem, nil];
    // 当label有内容的时候,再添加一个UIMenuItem
    if (self.text.length > 0) {
        UIMenuItem *menuItem1 = [[UIMenuItem alloc] initWithTitle:@"拷贝" action:@selector(copyAction)];
        menu.menuItems = [NSArray arrayWithObjects:menuItem, menuItem1, nil];
    }
    // 让UIMenuController显示出来,第二个参数不能直接写YES,否则会导致UIMenuController不断地闪烁
    [menu setMenuVisible:YES animated:!menu.isMenuVisible];
}

- (void)pasteAction{
    UIPasteboard *pBoard = [UIPasteboard generalPasteboard];

    if (pBoard.string != nil) {
        self.text = pBoard.string;
    }
}

- (void)copyAction{
    UIPasteboard *pBoard = [UIPasteboard generalPasteboard];
    pBoard.string = self.text;
}

- (BOOL)canBecomeFirstResponder{
    return YES;
}

demo示例: 没内容的时候:

有内容的时候:

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2016-08-02,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 一、UIMenuController认识
  • 二、对UILabel添加UIMenuController扩展
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档