新浪微博客户端(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];

}

最终效果:

 

posted @ 2016-12-04 13:24  夜行过客  阅读(541)  评论(0编辑  收藏  举报