JXSetShikuNumVC.h 559 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // JXSetShikuNumVC.h
  3. // shiku_im
  4. //
  5. // Created by p on 2019/4/11.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import "admobViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class JXSetShikuNumVC;
  11. @protocol JXSetShikuNumVCDelegate <NSObject>
  12. -(void)setShikuNum:(JXSetShikuNumVC *)setShikuNumVC updateSuccessWithAccount:(NSString *)account;
  13. @end
  14. @interface JXSetShikuNumVC : admobViewController
  15. @property (nonatomic, strong) JXUserObject *user;
  16. @property (nonatomic, weak) id<JXSetShikuNumVCDelegate> delegate;
  17. @end
  18. NS_ASSUME_NONNULL_END