1234567891011121314151617181920212223242526 |
- //
- // EmojiPackgeViewController.h
- // shiku_im
- //
- // Created by JayLuo on 2019/12/13.
- // Copyright © 2019 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "JLFacePackgeModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol EmojiPackgeVCDelegate <NSObject>
- // 发送
- - (void)selectEmojiPackgeWithString:(NSString *) str;
- @end
- @interface EmojiPackgeViewController : UIViewController
- @property (nonatomic, weak) id<EmojiPackgeVCDelegate>delegate;
- @property (nonatomic, strong) JLFacePackgeModel *model;
- @end
- NS_ASSUME_NONNULL_END
|