Commit dbdf522c by ludi

提交一些ui

parent bb39a355
Showing with 764 additions and 0 deletions
...@@ -34,6 +34,9 @@ ...@@ -34,6 +34,9 @@
/// 根据图片名称获取webp图片 /// 根据图片名称获取webp图片
+ (UIImage * _Nullable)webpImageName:(NSString * _Nullable)webpImageName; + (UIImage * _Nullable)webpImageName:(NSString * _Nullable)webpImageName;
/// 根据图片名称获取webp图片
+ (UIImage * _Nullable)webpImageName:(NSString * _Nullable)webpImageName scale:(CGFloat)scale;
/// 根据图片名称获取webp图片 (版本性) /// 根据图片名称获取webp图片 (版本性)
+ (UIImage *)versionWebpImageName:(NSString *)webpImageName; + (UIImage *)versionWebpImageName:(NSString *)webpImageName;
......
...@@ -44,6 +44,13 @@ ...@@ -44,6 +44,13 @@
return image; return image;
} }
+ (UIImage *)webpImageName:(NSString *)webpImageName scale:(CGFloat)scale {
NSData *resourceData = [NSData dataWithContentsOfFile:[[self.class bundle] pathForResource:[NSString stringWithFormat:@"%@.webp",webpImageName] ofType:nil]];
YYImage *image = [YYImage imageWithData:resourceData scale:scale];
image.preloadAllAnimatedImageFrames = YES;
return image;
}
+ (UIImage *)versionWebpImageName:(NSString *)webpImageName { + (UIImage *)versionWebpImageName:(NSString *)webpImageName {
return [self webpImageName:webpImageName]; return [self webpImageName:webpImageName];
} }
......
...@@ -608,6 +608,12 @@ ...@@ -608,6 +608,12 @@
00E6CDB82F5584BA00B63797 /* FUSLinkMicDataHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E6CDB72F5584BA00B63797 /* FUSLinkMicDataHelper.m */; }; 00E6CDB82F5584BA00B63797 /* FUSLinkMicDataHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E6CDB72F5584BA00B63797 /* FUSLinkMicDataHelper.m */; };
00E6CDB92F5584BA00B63797 /* FUSLinkMicDataHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E6CDB62F5584BA00B63797 /* FUSLinkMicDataHelper.h */; }; 00E6CDB92F5584BA00B63797 /* FUSLinkMicDataHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E6CDB62F5584BA00B63797 /* FUSLinkMicDataHelper.h */; };
00E6CDC02F5586AB00B63797 /* FUSLiveRoomSocket.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00E6CDBF2F5586AB00B63797 /* FUSLiveRoomSocket.swift */; }; 00E6CDC02F5586AB00B63797 /* FUSLiveRoomSocket.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00E6CDBF2F5586AB00B63797 /* FUSLiveRoomSocket.swift */; };
00E6CE1C2F56E36500B63797 /* live_pk_host_win_draw_reward_type2_anim.webp in Resources */ = {isa = PBXBuildFile; fileRef = 00E6CE1B2F56E36500B63797 /* live_pk_host_win_draw_reward_type2_anim.webp */; };
00E6CE1D2F56E36500B63797 /* live_pk_control_contribute_bottom_inpk_animate.webp in Resources */ = {isa = PBXBuildFile; fileRef = 00E6CE192F56E36500B63797 /* live_pk_control_contribute_bottom_inpk_animate.webp */; };
00E6CE1E2F56E36500B63797 /* live_pk_host_win_draw_reward_type1_anim.webp in Resources */ = {isa = PBXBuildFile; fileRef = 00E6CE1A2F56E36500B63797 /* live_pk_host_win_draw_reward_type1_anim.webp */; };
00E6CE202F56F5F200B63797 /* FUSLiveBottomToolWebpButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00E6CE1F2F56F5F200B63797 /* FUSLiveBottomToolWebpButton.swift */; };
00E6CE282F56F89F00B63797 /* img_liveroom_input_linkmic_apply_animation.webp in Resources */ = {isa = PBXBuildFile; fileRef = 00E6CE262F56F89F00B63797 /* img_liveroom_input_linkmic_apply_animation.webp */; };
00E6CE292F56F89F00B63797 /* img_liveroom_input_linkmic_waiting_animation.webp in Resources */ = {isa = PBXBuildFile; fileRef = 00E6CE272F56F89F00B63797 /* img_liveroom_input_linkmic_waiting_animation.webp */; };
3E261EA32F2C5F680008C0C0 /* FUSByteHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E261EA12F2C5F680008C0C0 /* FUSByteHelper.h */; }; 3E261EA32F2C5F680008C0C0 /* FUSByteHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E261EA12F2C5F680008C0C0 /* FUSByteHelper.h */; };
3E261EA42F2C5F680008C0C0 /* FUSByteHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E261EA22F2C5F680008C0C0 /* FUSByteHelper.m */; }; 3E261EA42F2C5F680008C0C0 /* FUSByteHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E261EA22F2C5F680008C0C0 /* FUSByteHelper.m */; };
3E261EA72F2C5FAB0008C0C0 /* FUSLinkMicMediator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E261EA52F2C5FAB0008C0C0 /* FUSLinkMicMediator.h */; }; 3E261EA72F2C5FAB0008C0C0 /* FUSLinkMicMediator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E261EA52F2C5FAB0008C0C0 /* FUSLinkMicMediator.h */; };
...@@ -2480,6 +2486,12 @@ ...@@ -2480,6 +2486,12 @@
00E6CDB62F5584BA00B63797 /* FUSLinkMicDataHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FUSLinkMicDataHelper.h; sourceTree = "<group>"; }; 00E6CDB62F5584BA00B63797 /* FUSLinkMicDataHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FUSLinkMicDataHelper.h; sourceTree = "<group>"; };
00E6CDB72F5584BA00B63797 /* FUSLinkMicDataHelper.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FUSLinkMicDataHelper.m; sourceTree = "<group>"; }; 00E6CDB72F5584BA00B63797 /* FUSLinkMicDataHelper.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FUSLinkMicDataHelper.m; sourceTree = "<group>"; };
00E6CDBF2F5586AB00B63797 /* FUSLiveRoomSocket.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FUSLiveRoomSocket.swift; sourceTree = "<group>"; }; 00E6CDBF2F5586AB00B63797 /* FUSLiveRoomSocket.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FUSLiveRoomSocket.swift; sourceTree = "<group>"; };
00E6CE192F56E36500B63797 /* live_pk_control_contribute_bottom_inpk_animate.webp */ = {isa = PBXFileReference; lastKnownFileType = file; path = live_pk_control_contribute_bottom_inpk_animate.webp; sourceTree = "<group>"; };
00E6CE1A2F56E36500B63797 /* live_pk_host_win_draw_reward_type1_anim.webp */ = {isa = PBXFileReference; lastKnownFileType = file; path = live_pk_host_win_draw_reward_type1_anim.webp; sourceTree = "<group>"; };
00E6CE1B2F56E36500B63797 /* live_pk_host_win_draw_reward_type2_anim.webp */ = {isa = PBXFileReference; lastKnownFileType = file; path = live_pk_host_win_draw_reward_type2_anim.webp; sourceTree = "<group>"; };
00E6CE1F2F56F5F200B63797 /* FUSLiveBottomToolWebpButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FUSLiveBottomToolWebpButton.swift; sourceTree = "<group>"; };
00E6CE262F56F89F00B63797 /* img_liveroom_input_linkmic_apply_animation.webp */ = {isa = PBXFileReference; lastKnownFileType = file; path = img_liveroom_input_linkmic_apply_animation.webp; sourceTree = "<group>"; };
00E6CE272F56F89F00B63797 /* img_liveroom_input_linkmic_waiting_animation.webp */ = {isa = PBXFileReference; lastKnownFileType = file; path = img_liveroom_input_linkmic_waiting_animation.webp; sourceTree = "<group>"; };
3E261EA12F2C5F680008C0C0 /* FUSByteHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FUSByteHelper.h; sourceTree = "<group>"; }; 3E261EA12F2C5F680008C0C0 /* FUSByteHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FUSByteHelper.h; sourceTree = "<group>"; };
3E261EA22F2C5F680008C0C0 /* FUSByteHelper.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FUSByteHelper.m; sourceTree = "<group>"; }; 3E261EA22F2C5F680008C0C0 /* FUSByteHelper.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FUSByteHelper.m; sourceTree = "<group>"; };
3E261EA52F2C5FAB0008C0C0 /* FUSLinkMicMediator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FUSLinkMicMediator.h; sourceTree = "<group>"; }; 3E261EA52F2C5FAB0008C0C0 /* FUSLinkMicMediator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FUSLinkMicMediator.h; sourceTree = "<group>"; };
...@@ -5239,6 +5251,7 @@ ...@@ -5239,6 +5251,7 @@
BED656102C5B745D00668116 /* FUSRoomShareView.h */, BED656102C5B745D00668116 /* FUSRoomShareView.h */,
BED656112C5B745D00668116 /* FUSRoomShareView.m */, BED656112C5B745D00668116 /* FUSRoomShareView.m */,
00E6CB0C2F4D523000B63797 /* FUSLiveGameListViewHeader.swift */, 00E6CB0C2F4D523000B63797 /* FUSLiveGameListViewHeader.swift */,
00E6CE1F2F56F5F200B63797 /* FUSLiveBottomToolWebpButton.swift */,
); );
path = ChatInputView; path = ChatInputView;
sourceTree = "<group>"; sourceTree = "<group>";
...@@ -7001,6 +7014,11 @@ ...@@ -7001,6 +7014,11 @@
BEF675A72C6B156500A670FB /* Check */, BEF675A72C6B156500A670FB /* Check */,
BEF675AC2C6B156500A670FB /* FirstTop */, BEF675AC2C6B156500A670FB /* FirstTop */,
BEF675EB2C6B156500A670FB /* img_novaList_cell_new_animation.webp */, BEF675EB2C6B156500A670FB /* img_novaList_cell_new_animation.webp */,
00E6CE192F56E36500B63797 /* live_pk_control_contribute_bottom_inpk_animate.webp */,
00E6CE262F56F89F00B63797 /* img_liveroom_input_linkmic_apply_animation.webp */,
00E6CE272F56F89F00B63797 /* img_liveroom_input_linkmic_waiting_animation.webp */,
00E6CE1A2F56E36500B63797 /* live_pk_host_win_draw_reward_type1_anim.webp */,
00E6CE1B2F56E36500B63797 /* live_pk_host_win_draw_reward_type2_anim.webp */,
BEF675EC2C6B156500A670FB /* live_linkmic_bgImg.png */, BEF675EC2C6B156500A670FB /* live_linkmic_bgImg.png */,
BEF675ED2C6B156500A670FB /* live_pk_background_image.png */, BEF675ED2C6B156500A670FB /* live_pk_background_image.png */,
00A1DCF62CA6B2C50000541F /* liveRoom_patAudience_pat_animate.webp */, 00A1DCF62CA6B2C50000541F /* liveRoom_patAudience_pat_animate.webp */,
...@@ -8380,6 +8398,8 @@ ...@@ -8380,6 +8398,8 @@
BED65B992C5CE71800668116 /* FUSLiveWecomeEnterView.xib in Resources */, BED65B992C5CE71800668116 /* FUSLiveWecomeEnterView.xib in Resources */,
BEF677A42C6B156600A670FB /* pk_win_streak_6@2x.png in Resources */, BEF677A42C6B156600A670FB /* pk_win_streak_6@2x.png in Resources */,
BEF676E72C6B156600A670FB /* PK_Lose_Animation_16@2x.png in Resources */, BEF676E72C6B156600A670FB /* PK_Lose_Animation_16@2x.png in Resources */,
00E6CE282F56F89F00B63797 /* img_liveroom_input_linkmic_apply_animation.webp in Resources */,
00E6CE292F56F89F00B63797 /* img_liveroom_input_linkmic_waiting_animation.webp in Resources */,
BEF677B72C6B156600A670FB /* PKAnchorPicBorderAnimation_12@2x.png in Resources */, BEF677B72C6B156600A670FB /* PKAnchorPicBorderAnimation_12@2x.png in Resources */,
BEF676D72C6B156600A670FB /* PK_Lose_Animation_00@2x.png in Resources */, BEF676D72C6B156600A670FB /* PK_Lose_Animation_00@2x.png in Resources */,
BEF6762B2C6B156500A670FB /* 2_live_activity_first_charge_bg_2.png in Resources */, BEF6762B2C6B156500A670FB /* 2_live_activity_first_charge_bg_2.png in Resources */,
...@@ -8472,6 +8492,9 @@ ...@@ -8472,6 +8492,9 @@
BEF677C92C6B156600A670FB /* PKBottomBtnBgRotationAnimation_10@3x.png in Resources */, BEF677C92C6B156600A670FB /* PKBottomBtnBgRotationAnimation_10@3x.png in Resources */,
BEF677D52C6B156600A670FB /* 1_live_first_recharge_package_detail_placeholder.png in Resources */, BEF677D52C6B156600A670FB /* 1_live_first_recharge_package_detail_placeholder.png in Resources */,
BEF677F02C6B156600A670FB /* live_minimize_anim_2@2x.png in Resources */, BEF677F02C6B156600A670FB /* live_minimize_anim_2@2x.png in Resources */,
00E6CE1C2F56E36500B63797 /* live_pk_host_win_draw_reward_type2_anim.webp in Resources */,
00E6CE1D2F56E36500B63797 /* live_pk_control_contribute_bottom_inpk_animate.webp in Resources */,
00E6CE1E2F56E36500B63797 /* live_pk_host_win_draw_reward_type1_anim.webp in Resources */,
BEF676892C6B156600A670FB /* live_guide_first_top_up_tips_anim_5@2x.png in Resources */, BEF676892C6B156600A670FB /* live_guide_first_top_up_tips_anim_5@2x.png in Resources */,
BEF6763E2C6B156500A670FB /* 2_live_activity_first_charge_bg_21.png in Resources */, BEF6763E2C6B156500A670FB /* 2_live_activity_first_charge_bg_21.png in Resources */,
BEF6767B2C6B156600A670FB /* live_gift_item_selected_anim_11@2x.png in Resources */, BEF6767B2C6B156600A670FB /* live_gift_item_selected_anim_11@2x.png in Resources */,
...@@ -8516,10 +8539,14 @@ ...@@ -8516,10 +8539,14 @@
inputFileListPaths = ( inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-FUSShowRoomModule/Pods-FUSShowRoomModule-resources-${CONFIGURATION}-input-files.xcfilelist", "${PODS_ROOT}/Target Support Files/Pods-FUSShowRoomModule/Pods-FUSShowRoomModule-resources-${CONFIGURATION}-input-files.xcfilelist",
); );
inputPaths = (
);
name = "[CP] Copy Pods Resources"; name = "[CP] Copy Pods Resources";
outputFileListPaths = ( outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-FUSShowRoomModule/Pods-FUSShowRoomModule-resources-${CONFIGURATION}-output-files.xcfilelist", "${PODS_ROOT}/Target Support Files/Pods-FUSShowRoomModule/Pods-FUSShowRoomModule-resources-${CONFIGURATION}-output-files.xcfilelist",
); );
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh; shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FUSShowRoomModule/Pods-FUSShowRoomModule-resources.sh\"\n"; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FUSShowRoomModule/Pods-FUSShowRoomModule-resources.sh\"\n";
...@@ -8933,6 +8960,7 @@ ...@@ -8933,6 +8960,7 @@
00E2A4342F1E1614003B779E /* FFPKControlAlertView.swift in Sources */, 00E2A4342F1E1614003B779E /* FFPKControlAlertView.swift in Sources */,
00E2A4352F1E1614003B779E /* FFPKControlOCDataDefine.m in Sources */, 00E2A4352F1E1614003B779E /* FFPKControlOCDataDefine.m in Sources */,
00E2A4362F1E1614003B779E /* FFPKPunishTypesView.swift in Sources */, 00E2A4362F1E1614003B779E /* FFPKPunishTypesView.swift in Sources */,
00E6CE202F56F5F200B63797 /* FUSLiveBottomToolWebpButton.swift in Sources */,
00E2A4372F1E1614003B779E /* FFPKControlWebView.swift in Sources */, 00E2A4372F1E1614003B779E /* FFPKControlWebView.swift in Sources */,
00E2A4382F1E1614003B779E /* FFPKControlSearchPlayerView.swift in Sources */, 00E2A4382F1E1614003B779E /* FFPKControlSearchPlayerView.swift in Sources */,
00E2A7F72F20EAB5003B779E /* FUSVSIndexGetInfoModel.m in Sources */, 00E2A7F72F20EAB5003B779E /* FUSVSIndexGetInfoModel.m in Sources */,
......
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "img_liveroom_input_linkmic_anchor_normal@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "img_liveroom_input_linkmic_anchor_normal@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "img_liveroom_input_linkmic_audience_normal@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "img_liveroom_input_linkmic_audience_normal@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "img_liveroom_input_linkmic_audience_waiting@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "img_liveroom_input_linkmic_audience_waiting@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "img_liveroom_input_linkmic_onmic_default@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "img_liveroom_input_linkmic_onmic_default@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "img_liveroom_input_linkmic_onmic_mute@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "img_liveroom_input_linkmic_onmic_mute@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_control_contribution_pkStatus_pk_avatar@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_control_contribution_pkStatus_pk_avatar@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_control_opponent_info_bg_blue@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_control_opponent_info_bg_blue@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_control_opponent_info_bg_red@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_control_opponent_info_bg_red@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_control_opponent_mute_off@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_control_opponent_mute_off@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_control_opponent_mute_on@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_control_opponent_mute_on@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_0@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_0@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_1@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_1@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_10@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_10@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_2@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_2@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_3@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_3@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_4@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_4@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_5@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_5@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_6@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_6@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_7@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_7@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_8@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_8@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_countdown_9@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_countdown_9@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_btn_action@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_btn_action@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_btn_cancel@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_btn_cancel@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_btn_face@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_btn_face@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_btn_none@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_btn_none@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_btn_view@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_btn_view@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_btn_voice@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_btn_voice@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_btn_waiting@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_btn_waiting@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_item_action@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_item_action@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_item_desc_btn@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_item_desc_btn@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_item_face@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_item_face@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_item_view@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_item_view@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "live_pk_punish_select_item_voice@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "live_pk_punish_select_item_voice@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment