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

上一篇:linux与windows的不同


下一篇:$.ajax()方法参数详解