27 lines
569 B
Objective-C
27 lines
569 B
Objective-C
//
|
||
// YMHtmlUrl.h
|
||
// YUMI
|
||
//
|
||
// Created by YUMI on 2021/9/13.
|
||
//
|
||
///放置h5的链接地址
|
||
#import <Foundation/Foundation.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface YUMIHtmlUrl : NSObject
|
||
|
||
/// URL类型枚举(仅保留实际使用的类型)
|
||
typedef NS_ENUM(NSUInteger, URLType) {
|
||
kPrivacyURL = 0, ///隐私政策
|
||
kUserProtocalURL = 4, ///用户协议
|
||
kFAQURL = 6, ///帮助/常见问题
|
||
kCaptchaSwitchPath = 113, ///人机验证
|
||
};
|
||
|
||
NSString * const URLWithType(URLType type);
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|