标签: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]; }
最终效果:
标签:name 通知 image span gif self back ack ext
原文地址:http://www.cnblogs.com/yongdaimi/p/6130661.html