57 lines
1.3 KiB
Mathematica
57 lines
1.3 KiB
Mathematica
|
|
//
|
||
|
|
// THBottleInfoModel.m
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by iOS on 2023/2/11.
|
||
|
|
// Copyright © 2023 CYH. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "THBottleInfoModel.h"
|
||
|
|
|
||
|
|
@implementation THBottleInfoModel
|
||
|
|
|
||
|
|
- (UIImage *)TH_genderImg {
|
||
|
|
NSString *imgName = [NSString stringWithFormat:@"TH_%@_tag", [self.gender_str lowercaseString]];
|
||
|
|
return UIImageMake(imgName);
|
||
|
|
}
|
||
|
|
|
||
|
|
- (THBottleType)TH_bottleType {
|
||
|
|
return [THNetworkInterfaceService inquiryBottleType:self.bottle_type];
|
||
|
|
}
|
||
|
|
/*
|
||
|
|
letter_friend 一起游戏
|
||
|
|
secret 树洞
|
||
|
|
alone 孤单
|
||
|
|
feel_wronged 委屈
|
||
|
|
feel_irritable 好烦
|
||
|
|
tired 累了
|
||
|
|
happy 开心
|
||
|
|
qixi_activity 七夕速配
|
||
|
|
secret_heart 心底的秘密
|
||
|
|
qixi_android 七夕速配
|
||
|
|
secret_self 露水情缘
|
||
|
|
anger 倾诉
|
||
|
|
emo emo
|
||
|
|
emotion_daily 心情日记
|
||
|
|
marry 一周情侣
|
||
|
|
open_relation 找闺蜜
|
||
|
|
sad 不开心
|
||
|
|
adult_home 关于家庭
|
||
|
|
adult_emotion 关于感情
|
||
|
|
adult_job 关于工作
|
||
|
|
chat_for_you 陪你聊天
|
||
|
|
pic_game_normal 交换照片
|
||
|
|
voice_game_normal 交换声音
|
||
|
|
text_game_secret 交换秘密
|
||
|
|
text_game_intro 交换个人介绍
|
||
|
|
voice_game_song 声音瓶
|
||
|
|
my_photo 写真瓶
|
||
|
|
bad_me 不好的我
|
||
|
|
good_me 好的我
|
||
|
|
game_for_you 带你上分
|
||
|
|
remove_single 脱单便利店
|
||
|
|
my_room 照片瓶
|
||
|
|
*/
|
||
|
|
|
||
|
|
@end
|