EmojiPackgeViewController.h 540 B

1234567891011121314151617181920212223242526
  1. //
  2. // EmojiPackgeViewController.h
  3. // shiku_im
  4. //
  5. // Created by JayLuo on 2019/12/13.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JLFacePackgeModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol EmojiPackgeVCDelegate <NSObject>
  12. // 发送
  13. - (void)selectEmojiPackgeWithString:(NSString *) str;
  14. @end
  15. @interface EmojiPackgeViewController : UIViewController
  16. @property (nonatomic, weak) id<EmojiPackgeVCDelegate>delegate;
  17. @property (nonatomic, strong) JLFacePackgeModel *model;
  18. @end
  19. NS_ASSUME_NONNULL_END