新浪微博客户端(49)-删除输入的Emotion表情
Posted 夜行过客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新浪微博客户端(49)-删除输入的Emotion表情相关的知识,希望对你有一定的参考价值。
DJComposePageView.m
- (void)deleteInputEmotion { // 发通知 [[NSNotificationCenter defaultCenter] postNotificationName:DJEmotionDidDeletedNotification object:nil]; }
DJComposeViewController.m
// 注册监听删除表情通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onReceiveEmotionDidDeletedNotification) name:DJEmotionDidDeletedNotification object:nil];
/** 接收到删除表情通知 */ - (void)onReceiveEmotionDidDeletedNotification { [self.textView deleteBackward]; }
最终效果:
以上是关于新浪微博客户端(49)-删除输入的Emotion表情的主要内容,如果未能解决你的问题,请参考以下文章