JXSetChatBackgroundVC.h 525 B

1234567891011121314151617181920212223
  1. //
  2. // JXSetChatBackgroundVC.h
  3. // shiku_im
  4. //
  5. // Created by p on 2017/12/8.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import "admobViewController.h"
  9. @class JXSetChatBackgroundVC;
  10. @protocol JXSetChatBackgroundVCDelegate <NSObject>
  11. - (void)setChatBackgroundVC:(JXSetChatBackgroundVC *)setChatBgVC image:(UIImage *)image;
  12. @end
  13. @interface JXSetChatBackgroundVC : admobViewController
  14. @property (nonatomic, weak) id<JXSetChatBackgroundVCDelegate>delegate;
  15. @property (nonatomic, copy) NSString *userId;
  16. @end