Files
real-e-party-iOS/YuMi/Global/YUMINNNN.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

92 lines
2.5 KiB
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// YMEnum.h
// YUMI
//
// Created by YUMI on 2021/9/13.
//
///放置一些全局的枚举
#ifndef YUMINNNN_h
#define YUMINNNN_h
typedef NS_ENUM(NSUInteger, ThirdLoginType) {
ThirdLoginType_WeChat = 1,///微信
ThirdLoginType_QQ = 2,///QQ
ThirdLoginType_FB = 10,///FackBook
ThirdLoginType_Line = 9,///Line
ThirdLoginType_Gmail = 8,///谷歌
ThirdLoginType_Apple = 5,///苹果登录
ThirdLoginType_Phone = 11,///手机号登录
};
/// @param type 类型 业务类型必填1注册2登录3重设密码4绑定手机5绑定xczAccount6重设xcz密码7解绑手机
typedef NS_ENUM(NSUInteger, GetSmsType) {
GetSmsType_Regist = 1,///注册
GetSmsType_Login = 2,///登录
GetSmsType_Reset_Password = 3,///重设密码
GetSmsType_Bind_Phone = 4, ///绑定手机
GetSmsType_Bind_ZF = 5,///绑定支付宝
GetSmsType_Reset_ZF = 6,///重设支付密码
GetSmsType_Unbind_Phone = 7, ///解绑手机
};
typedef NS_ENUM(NSInteger, GenderType) {
GenderType_Male = 1,///男性
GenderType_Female = 2,///女性
};
typedef NS_ENUM(NSInteger, DressUpLabelType) {
DressUpLabelType_New = 1, //新品
DressUpLabelType_Discount = 2, //折扣
DressUpLabelType_Limit = 3,//限定
DressUpLabelType_Exclusive = 4//专属
};
typedef NS_ENUM(NSInteger, GroupType) {
GroupType_default = 0,//默认
GroupType_Blue = 1,//蓝队 男神
GroupType_Red = 2, //红队 女神
};
typedef NS_ENUM(NSInteger, UserEnterRoomFromType) {
///首页推荐
UserEnterRoomFromType_Home_Recommend = 1,
///跟随用户
UserEnterRoomFromType_Follow_User = 2,
///赛事详情
UserEnterRoomFromType_Follow_Game_Detail = 8,
///跨房PK
UserEnterRoomFromType_Cross_Room_PK = 9,
///新用户打招呼
UserEnterRoomFromType_New_User_Greet = 10
};
typedef NS_ENUM(NSInteger, LittleGamePlayStatus) {
LittleGamePlayStatus_NoIn = 0,//未加入
LittleGamePlayStatus_IsIn = 1,//已加入
LittleGamePlayStatus_Ready = 2, //已准备
LittleGamePlayStatus_Plying = 3,//游戏中
};
typedef NS_ENUM(NSInteger, RoomPKVoteModeType){
RoomPKVoteModeType_GiftValue = 1,//礼物价值
RoomPKVoteModeType_NumberPerson = 2, //按送礼物的人数
};
typedef NS_ENUM(NSInteger, RoomPKResultType) {
RoomPKResultType_Draw = 0,//平局
RoomPKResultType_Blue = 1,//蓝方胜
RoomPKResultType_Red = 2, //红方胜
};
typedef NS_ENUM(NSInteger, ContactUseingType) {
///默认
ContactUseingType_Normal = 0,
///在房间内
ContactUseingType_In_Room = 1,
///分享
ContactUseingType_Share = 2,
///消息
ContactUseingType_In_Session = 3
};
#endif /* YUMINNNN_h */