国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > iOS > 正文

IOS程序開(kāi)發(fā)之禁止輸入表情符號(hào)實(shí)例代碼

2020-07-26 03:22:41
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

廢話不多說(shuō)了,先給大家展示效果圖。

一,效果圖。


二,工程圖。


三,代碼。

RootViewController.h

#import <UIKit/UIKit.h>@interface RootViewController : UIViewController<UITextViewDelegate>@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:textoptions:0range:NSMakeRange(0, [text length])withTemplate:@""];return modifiedString;}

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 永宁县| 济宁市| 溧阳市| 六枝特区| 兰州市| 大英县| 泗洪县| 中阳县| 阜新市| 康定县| 翁源县| 延边| 宁武县| 鸡东县| 靖州| 秦安县| 班戈县| 富宁县| 犍为县| 抚顺县| 南通市| 靖西县| 泰兴市| 南和县| 内江市| 黄大仙区| 阳春市| 沧源| 宣城市| 瑞丽市| 临城县| 隆回县| 金阳县| 宜黄县| 横峰县| 永仁县| 南岸区| 卫辉市| 乌鲁木齐县| 孝义市| 浦城县|