码迷,mamicode.com
首页 > 其他好文 > 详细

新浪微博客户端(49)-删除输入的Emotion表情

时间:2016-12-04 14:29:08      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:name   通知   image   span   gif   self   back   ack   ext   

 

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表情

标签:name   通知   image   span   gif   self   back   ack   ext   

原文地址:http://www.cnblogs.com/yongdaimi/p/6130661.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!