42 lines
1.2 KiB
Objective-C
42 lines
1.2 KiB
Objective-C
//
|
|
// HBCommonKeys.h
|
|
// QinJiuTV
|
|
//
|
|
// Created by 秦九 on 2024/4/30.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/// 网络请求地址
|
|
extern NSString * _Nonnull const HBBaseUrlString;
|
|
|
|
/// 保存设备唯一值key
|
|
extern NSString * _Nonnull const HBIdentifierForVendorKey;
|
|
|
|
/// 用来保存用户是不是主动登录成功了,可以用来判断是否登录
|
|
extern NSString * _Nonnull const HBCustomerLoginSuccessKey;
|
|
|
|
/// 保存网络请求的Token
|
|
extern NSString * _Nonnull const HBNetWorkingTokenKey;
|
|
|
|
/// 保存网络请求的Token
|
|
extern NSString * _Nonnull const HBCustomerIdKey;
|
|
|
|
/// 搜索历史key
|
|
extern NSString * _Nonnull const HBSearchHistoryKey;
|
|
|
|
/// 播放界面离开 通知播放器暂停
|
|
extern NSString * _Nonnull const HBPlayerPuaseKey;
|
|
|
|
/// 推送详情使用
|
|
extern NSString * _Nonnull const HBNotificationOpenActionIdentifier;
|
|
extern NSString * _Nonnull const HBNotificationOpenCategoryIdentifier;
|
|
|
|
/// 第一次启动存储
|
|
extern NSString * _Nonnull const HBNotFirstStartKey;
|
|
|
|
/// 通知
|
|
FOUNDATION_EXPORT NSNotificationName _Nonnull const HBUpdateUserInfoNotification;
|
|
FOUNDATION_EXPORT NSNotificationName _Nonnull const HBFirstStartNotification;
|
|
|