• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 从以编程方式创建的 UITextView IOS 中删除 "Copy"菜单项

[复制链接]
菜鸟教程小白 发表于 2022-12-13 07:21:06 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我在 viewDidLoad 中以编程方式创建 UITextView。
当我选择文本时,菜单会显示以下内容:

enter image description here

如图所示,我添加了两个自定义按钮,即突出显示和取消突出显示。我想删除“复制”选项并保留所有其他选项,所以我不能使其不可编辑,我需要允许用户从文本中选择他想要的任何内容,但要防止它复制内容。
我尝试了几种方法,包括所有社区都提到的这种方法:

- (BOOL)canPerformActionSEL)action withSenderid)sender
{
     NSLog(@"it went in canPerform");
     if (action == @selector(copy){

          NSLog(@"It prevented the copy option and hid it from the menu");
          return NO;

     }
     return [super canPerformAction:action withSender:sender];
}

为了更好地了解问题,如果选择器实际上考虑了“复制”选项,我尝试注销,这是我的日志:

2015-05-20 11:27:47.637 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.637 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.638 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.638 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.638 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.638 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.638 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.638 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.663 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.664 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.664 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.664 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.664 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.664 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.664 MyApp[56604:11786730] it went in canPerform

2015-05-20 11:27:47.664 MyApp[56604:11786730] it went in canPerform

正如它所显示的,代码正在调用“canPerformAction”,因为日志显示“它进入 canPerform”,但它没有识别“复制”操作,因为日志从未显示:“它阻止了复制选项并隐藏它来自菜单”。
因此,我的问题是我需要从选定的文本菜单中隐藏“复制”项。我错过了什么?



Best Answer-推荐答案


对于所有必须处理这种情况的 future 开发人员,我知道您会感到多么沮丧,所以我将提供一个完整的教程,因为我遇到了结合了大多数已发布答案的正确答案:

1 - 我只有在您以编程方式创建 UITextView 时才有效,如果您使用 Storyboard 创建它,它将不起作用,这是最重要的部分,因为如果您已经创建了 UITextView使用 Storyboard ,您将无法删除“副本”,您将能够删除其他所有内容!只是不是副本

2 - 您必须继承 UITextView 类,对于所有新开发人员来说,这是通过创建一个新类并选择它作为 UITextView 的子类来完成的。

3 - 您的 .h 文件将类似于

//
//  myCustomClass.h
//  myApp
//
//  Created by Elias Rahme on 5/20/15.
//  Copyright (c) 2015 Elias Rahme. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface myCustomClass : UITextView

@end

您的 .m 文件将是这样的:

//
//  myCustomClass.m
//  myApp
//
//  Created by Elias Rahme on 5/20/15.
//  Copyright (c) 2015 Elias Rahme. All rights reserved.
//

#import "myCustomClass.h"

@implementation myCustomClass


-(BOOL)canPerformActionSEL)action withSenderid)sender {
     if (action == @selector(copy) {
          return NO;
     }
     return [super canPerformAction:action withSender:sender];
}
@end

4 - 现在,在设置完所有内容之后,棘手的部分来了。在您要使用 UITextView 的类中,当然包括您的 customClass,然后,这就是您调用 textView 的方式:

首先,您必须创建一个新的 UITextView,这是通过在实现上方编写 UITextView *newTextView; 来完成的,就像创建任何变量一样。

其次,在你完成所有工作的实际类里面,转到你的 .h 文件,并确保它看起来像那样

#import <UIKit/UIKit.h>

@interface myActuallClassWhereIWantTheActualWorkToBeDone : UIViewController< UITextViewDelegate>{


}

第三,将以下行添加到您的 viewDidLoad 方法中:

 newTextView = [[myCustomClass alloc] initWithFrame:CGRectMake(yourX, yourY, yourWidth, yourHeight)];
newTextView.text = @"This is the best small tutorial EVER!!";
 newTextView.delegate = self;

然后,运行您的应用程序,您将看不到“复制”选项!这是一个简单而棘手的过程,我花了几个小时才真正总结了我访问过的所有网页!希望大家喜欢!

关于ios - 从以编程方式创建的 UITextView IOS 中删除 "Copy"菜单项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30344373/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap