RQHTTPService+RQGetCode.h 458 B

1234567891011121314151617181920212223
  1. //
  2. // RQHTTPService+RQGetCode.h
  3. // BuckDriverStudent
  4. //
  5. // Created by 张嵘 on 2021/2/1.
  6. // Copyright © 2021 lee. All rights reserved.
  7. //
  8. #import "RQHTTPService.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQHTTPService (RQGetCode)
  11. /**
  12. 注册报名获取短信验证码
  13. @param telephone 手机号码
  14. @return Returns a signal which will send complete, or error.
  15. */
  16. - (RACSignal *)getCodeWithTelePhone:(NSString *)telephone;
  17. @end
  18. NS_ASSUME_NONNULL_END