IOS开发中输入表情符号的实现方法

来源:爱站网时间:2021-02-05编辑:网友分享
在开发过程中,我们可能会遇到服务器后台数据库无法识别的问题,如果服务器异常这是会导致用户体验差的情况,下面爱站技术频道小编IOS开发中输入表情符号的实现方法,希望对你学习有所帮助。

在开发过程中,我们可能会遇到服务器后台数据库无法识别的问题,如果服务器异常这是会导致用户体验差的情况,下面爱站技术频道小编IOS开发中输入表情符号的实现方法,希望对你学习有所帮助。

一,效果图。

二,工程图。

三,代码。

RootViewController.h

#import 
@interface RootViewController : UIViewController

@end 
RootViewController.m
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//初始化背景
[self addView];
}
#pragma -mark -functions
-(void)addView
{
UITextView *textView=[[UITextView alloc]initWithFrame:CGRectMake(50, 100, 200, 50)];
textView.backgroundColor=[UIColor redColor];
textView.delegate=self;
[self.view addSubview:textView];
}
#pragma -mark -UITextViewDelegate
- (void)textViewDidChange:(UITextView *)textView
{
NSRange textRange = [textView selectedRange];
[textView setText:[self disable_emoji:[textView text]]];
[textView setSelectedRange:textRange];
}
//禁止输入表情
- (NSString *)disable_emoji:(NSString *)text
{
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"[^\\u0020-\\u007E\\u00A0-\\u00BE\\u2E80-\\uA4CF\\uF900-\\uFAFF\\uFE30-\\uFE4F\\uFF00-\\uFFEF\\u0080-\\u009F\\u2000-\\u201f\r\n]" options:NSRegularExpressionCaseInsensitive error:nil];
NSString *modifiedString = [regex stringByReplacingMatchesInString:text
options:0
range:NSMakeRange(0, [text length])
withTemplate:@""];
return modifiedString;
}

上述是爱站技术频道小编为大家带来的IOS开发中输入表情符号的实现方法,开发好的网站可以给我们带来收益,这也是目前互联网赚钱的模式之一。

上一篇:如何实现IOS开发中的远程控制

下一篇:深入分析IOS开发中图像缓存管理操作

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载