本文介绍: 手机截屏是手机系统操作,app是无法阻止这个操作的。为了防止app内容被截屏我们可以通过UITextfeild控件的secureTextEntry属性来实现截屏空白页面,其原理就是利用了开启安全文本输入属性,将需要隐藏的内容添加到UITextfeild的子视图(textField.subviews.firstObject)上,就可以达到此效果。但是此方法只能iOS13以上使用。
一、前言
手机截屏是手机系统操作,app是无法阻止这个操作的。为了防止app内容被截屏我们可以通过UITextfeild控件的secureTextEntry属性来实现截屏空白页面,其原理就是利用了开启安全文本输入属性,将需要隐藏的内容添加到UITextfeild的子视图(textField.subviews.firstObject)上,就可以达到此效果。但是此方法只能iOS13以上使用。
二、代码实现
想要隐藏截图,首先要创建一个UITextField,并将secureTextEntry属性设置为Yes。
UITextField *textField = [[UITextField alloc] initWithFrame:self.view.bounds];
[self.view addSubview:textField];
textField.backgroundColor = [UIColor whiteColor];
textField.secureTextEntry = YES;
为了体现效果,我使用UILabel画了一个label,来看效果。左边是未使用secureTextEntry,右边是使用了secureTextEntry。
UITextField *textField = [[UITextField alloc] initWithFrame:self.view.bounds];
[self.view addSubview:textField];
textField.backgroundColor = [UIColor whiteColor];
textField.secureTextEntry = YES;
UILabel *label = [UILabel new];
label.frame = CGRectMake(0, 0, 200, 100);
label.center = self.view.center;
label.layer.masksToBounds = YES;
label.layer.cornerRadius = 50;
label.backgroundColor = [UIColor orangeColor];
label.text = @"This is a label";
label.font = [UIFont systemFontOfSize:25];
label.textAlignment = NSTextAlignmentCenter;
//将想要隐藏的内容添加到UITextField的子视图上
[textField.subviews.firstObject addSubview:label];
这显然不符合我们的需求,这时候我们就需要用到UITextField代理(textFieldShouldBeginEditing)来限制输入,在主代码段加入textField.delegate = self;
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
return NO;
}
三、具体代码
#import "ViewController.h"
@interface ViewController () <UITextFieldDelegate>
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
UITextField *textField = [[UITextField alloc] initWithFrame:self.view.bounds];
[self.view addSubview:textField];
textField.backgroundColor = [UIColor whiteColor];
textField.secureTextEntry = YES;
textField.delegate = self;
UILabel *label = [UILabel new];
label.frame = CGRectMake(0, 0, 200, 100);
label.center = self.view.center;
label.layer.masksToBounds = YES;
label.layer.cornerRadius = 50;
label.backgroundColor = [UIColor orangeColor];
label.text = @"This is a label";
label.font = [UIFont systemFontOfSize:25];
label.textAlignment = NSTextAlignmentCenter;
//将想要隐藏的内容添加到UITextField的子视图上
[textField.subviews.firstObject addSubview:label];
}
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
return NO;
}
原文地址:https://blog.csdn.net/qq_43441647/article/details/128216189
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_10151.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。