SMSDemoHelper.h 389 B

1234567891011121314151617181920212223242526
  1. //
  2. // SMSDemoHelper.h
  3. // SMSSDKDemo
  4. //
  5. // Created by hower on 2020/1/2.
  6. // Copyright © 2020 youzu. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SMSDemoHelper : NSObject
  11. + (NSString *)currentZone;
  12. + (NSString *)currentCountryName;
  13. + (NSString *)errorTextWithError:(NSError *)error;
  14. + (BOOL)isZhHans;
  15. @end
  16. NS_ASSUME_NONNULL_END