替换图片资源

This commit is contained in:
bluesea 2024-07-24 10:34:40 +08:00
parent d9eca7cd1c
commit 73dfdf9179
81 changed files with 97 additions and 140 deletions

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
uuid = "4BDEE0FC-0882-433C-B761-9299AE1A4C64"
type = "0"
version = "2.0">
<Breakpoints>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
uuid = "3F42E3F1-5746-47DD-BB66-7FB0909B48EA"
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "HD wallpaper/WallPapaerADManager/WallPapaerADManager.m"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "191"
endingLineNumber = "191"
landmarkName = "-checkOpenADReadyState"
landmarkType = "7">
</BreakpointContent>
</BreakpointProxy>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
uuid = "A8C65933-D7D0-446D-9095-75CE7813ED2E"
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "HD wallpaper/WallPapaerADManager/WallPapaerADManager.m"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "195"
endingLineNumber = "195"
landmarkName = "-checkOpenADReadyState"
landmarkType = "7">
</BreakpointContent>
</BreakpointProxy>
</Breakpoints>
</Bucket>

View File

@ -77,7 +77,7 @@ rejoin_C *= synthetic_0;
[backItem addTarget:self action:@selector(backItemEventLove:) forControlEvents:UIControlEventTouchUpInside]; [backItem addTarget:self action:@selector(backItemEventLove:) forControlEvents:UIControlEventTouchUpInside];
self.backItem = backItem; self.backItem = backItem;
self.data = @[@[@"fj1",@"fj2",@"fj3",@"fj4",@"fj5",@"fj6",@"fj7",@"fj8",@"fj9",@"fj10"],@[@"mv1",@"mv2",@"mv3",@"mv4",@"mv5",@"mv6",@"mv7",@"mv8",@"mv9",@"mv10"],@[@"kt1",@"kt2",@"kt3",@"kt4",@"kt5",@"kt6",@"kt7",@"kt8",@"kt9"],@[@"rw1",@"rw2",@"rw3",@"rw4",@"rw5",@"rw6",@"rw7",@"rw8",@"rw9",@"rw10",@"rw11",@"rw12",@"rw13",@"rw14",@"rw15",@"rw16",@"rw17",@"rw18",@"rw19"]]; self.data = @[@[@"fj2",@"fj1",@"fj5",@"fj4",@"fj3",@"fj6",@"fj7",@"fj8",@"fj9",@"fj10"],@[@"mv3",@"mv2",@"mv1",@"mv7",@"mv5",@"mv6",@"mv4",@"mv8",@"mv9",@"mv10"],@[@"kt1",@"kt2",@"kt3",@"kt4",@"kt5",@"kt6",@"kt7",@"kt8",@"kt9"],@[@"rw9",@"rw13",@"rw5",@"rw4",@"rw3",@"rw6",@"rw7",@"rw8",@"rw1",@"rw10",@"rw11",@"rw12",@"rw2",@"rw14",@"rw15",@"rw16",@"rw17",@"rw18",@"rw19"]];
UIImageView *bgImage = [[UIImageView alloc] initWithFrame:self.view.bounds]; UIImageView *bgImage = [[UIImageView alloc] initWithFrame:self.view.bounds];
NSString *bg = KLS(@"bg", @"A friendly greeting"); NSString *bg = KLS(@"bg", @"A friendly greeting");
bgImage.image = [UIImage imageNamed:bg]; bgImage.image = [UIImage imageNamed:bg];

View File

@ -36,6 +36,9 @@ NSString *preposterous_6 = [extremely_0 stringFromDate:[NSDate date]];
NSString *my0 = KLS(@"my0", @"A friendly greeting"); NSString *my0 = KLS(@"my0", @"A friendly greeting");
iconImage.image = [UIImage imageNamed:my0]; iconImage.image = [UIImage imageNamed:my0];
iconImage.userInteractionEnabled = YES; iconImage.userInteractionEnabled = YES;
iconImage.layer.cornerRadius = iconImage.frame.size.width*0.5;
iconImage.layer.masksToBounds = YES;
[self.view addSubview:iconImage]; [self.view addSubview:iconImage];
NSArray *icons = @[my1,my2,my3,my4]; NSArray *icons = @[my1,my2,my3,my4];
for (int i = 0; i < 4; i ++) { for (int i = 0; i < 4; i ++) {
@ -55,9 +58,11 @@ NSString *preposterous_6 = [extremely_0 stringFromDate:[NSDate date]];
[pracy_btn setTitle:privacy forState:UIControlStateNormal]; [pracy_btn setTitle:privacy forState:UIControlStateNormal];
[pracy_btn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal]; [pracy_btn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
pracy_btn.titleLabel.font = [UIFont systemFontOfSize:14]; pracy_btn.titleLabel.font = [UIFont systemFontOfSize:14];
CGFloat btn_w = 90; CGFloat btn_w = 120;
CGFloat btn_h = 20; CGFloat btn_h = 20;
pracy_btn.frame = CGRectMake((WPScreen_w - btn_w) * .5-1,WPScreen_h - btn_h - 90-1,btn_w-1,btn_h-1); pracy_btn.frame = CGRectMake((WPScreen_w - btn_w) * .5-1,WPScreen_h - btn_h - 90-1,btn_w-1,btn_h-1);
[pracy_btn setTitleColor:[UIColor darkGrayColor] forState:UIControlStateNormal];
pracy_btn.titleLabel.font = [UIFont boldSystemFontOfSize:14];
} }

View File

@ -47,7 +47,7 @@ NSString *considerate_8 = [thousand_8 stringFromDate:[NSDate date]];
[super viewDidLoad]; [super viewDidLoad];
self.title = @""; self.title = @"";
self.data = @[@[@"h1",@"h2",@"h3"],@[@"fj9",@"kt5",@"mv9",@"rw4",@"rw12",@"mv4",@"fj1",@"kt3",@"fj2",@"mv2"]]; self.data = @[@[@"fj2",@"h2",@"mv4"],@[@"mv2",@"fj9",@"kt3",@"h3",@"mv9",@"rw4",@"h1",@"fj1",@"rw12",@"kt5"]];
UIImageView *bgImage = [[UIImageView alloc] initWithFrame:self.view.bounds]; UIImageView *bgImage = [[UIImageView alloc] initWithFrame:self.view.bounds];
NSString *bg = KLS(@"bg", @"A friendly greeting"); NSString *bg = KLS(@"bg", @"A friendly greeting");
bgImage.image = [UIImage imageNamed:bg]; bgImage.image = [UIImage imageNamed:bg];
@ -198,10 +198,16 @@ incompatibility_T *= follow_T;
UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0-1,0-1,WPScreen_w-1,50-1)]; UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0-1,0-1,WPScreen_w-1,50-1)];
headerLabel.textColor = WP_COLOR_WITH_HEX(0X333333); headerLabel.textColor = WP_COLOR_WITH_HEX(0X333333);
// headerLabel.textColor = [UIColor whiteColor]; //WP_COLOR_WITH_HEX(0X333333);
headerLabel.font = [UIFont boldSystemFontOfSize:20]; headerLabel.font = [UIFont boldSystemFontOfSize:20];
NSString *tuijian = KLS(@"tuijian", @"A friendly greeting"); NSString *tuijian = KLS(@"tuijian", @"A friendly greeting");
NSString *jingxuan = KLS(@"jingxuan", @"A friendly greeting"); NSString *jingxuan = KLS(@"jingxuan", @"A friendly greeting");
headerLabel.text = [NSString stringWithFormat:@" %@",section == 0 ? tuijian : jingxuan]; headerLabel.text = [NSString stringWithFormat:@" %@",section == 0 ? tuijian : jingxuan];
// headerLabel.layer.masksToBounds = YES;
// headerLabel.layer.cornerRadius = 4;
// headerLabel.backgroundColor = [UIColor colorWithRed:63.0/255.0 green:35.0/255.0 blue:35.0/255.0 alpha:1];
return headerLabel; return headerLabel;
} }
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{ - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{

View File

@ -186,7 +186,7 @@ radar_T *= sexual_L;
UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0-1,0-1,WPScreen_w-1,50-1)]; UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0-1,0-1,WPScreen_w-1,50-1)];
headerLabel.textColor = WP_COLOR_WITH_HEX(0X333333); headerLabel.textColor = WP_COLOR_WITH_HEX(0X333333);
headerLabel.font = [UIFont boldSystemFontOfSize:20]; headerLabel.font = [UIFont boldSystemFontOfSize:20];
headerLabel.text = [NSString stringWithFormat:@" %@",@"保存的壁纸"]; headerLabel.text = [NSString stringWithFormat:@" %@",@"Saved Wallpaper"];
return headerLabel; return headerLabel;
} }
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{ - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{

View File

@ -1,107 +1,9 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "icon-20@2x 1.png", "filename" : "ssa.png",
"idiom" : "iphone", "idiom" : "universal",
"scale" : "2x", "platform" : "ios",
"size" : "20x20"
},
{
"filename" : "icon-20@3x.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "20x20"
},
{
"filename" : "icon-29@2x 1.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "29x29"
},
{
"filename" : "icon-29@3x.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "29x29"
},
{
"filename" : "icon-40@2x 1.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "40x40"
},
{
"filename" : "icon-40@3x.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "40x40"
},
{
"filename" : "icon-60@2x.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "60x60"
},
{
"filename" : "icon-60@3x.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "60x60"
},
{
"idiom" : "ipad",
"scale" : "1x",
"size" : "20x20"
},
{
"filename" : "icon-20@2x.png",
"idiom" : "ipad",
"scale" : "2x",
"size" : "20x20"
},
{
"idiom" : "ipad",
"scale" : "1x",
"size" : "29x29"
},
{
"filename" : "icon-29@2x.png",
"idiom" : "ipad",
"scale" : "2x",
"size" : "29x29"
},
{
"idiom" : "ipad",
"scale" : "1x",
"size" : "40x40"
},
{
"filename" : "icon-40@2x.png",
"idiom" : "ipad",
"scale" : "2x",
"size" : "40x40"
},
{
"idiom" : "ipad",
"scale" : "1x",
"size" : "76x76"
},
{
"filename" : "icon-76@2x.png",
"idiom" : "ipad",
"scale" : "2x",
"size" : "76x76"
},
{
"filename" : "icon-83.5@2x.png",
"idiom" : "ipad",
"scale" : "2x",
"size" : "83.5x83.5"
},
{
"filename" : "icon-1024.png",
"idiom" : "ios-marketing",
"scale" : "1x",
"size" : "1024x1024" "size" : "1024x1024"
} }
], ],

Binary file not shown.

Before

Width:  |  Height:  |  Size: 631 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

View File

@ -1,7 +1,7 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "back_en.png", "filename" : "90ff920d-3432-4dd6-aed3-5ac410929ae1.jpeg",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

View File

@ -1,7 +1,7 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "my0_en.png", "filename" : "ssa.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

View File

@ -1,15 +1,16 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "tab11_en.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "草丛 1.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "草丛.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -1,14 +1,19 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "tab1_en.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "花丛 1.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{
"filename" : "花丛.png",
"idiom" : "universal",
"scale" : "3x"
},
{ {
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -1,15 +1,16 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "tab22_en.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "植物 1.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "植物.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -1,15 +1,16 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "tab2_en.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "植物 1.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "植物.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -1,15 +1,16 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "tab33_en.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "花卉 (1) 1.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "花卉 (1).png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -1,15 +1,16 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "tab3_en.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "花卉 1.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "花卉.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -1,15 +1,16 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "tab44_en.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "花丛 1.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "花丛.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -1,15 +1,16 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "tab4_en.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "花丛 1.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "花丛.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -9,7 +9,7 @@
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "bg@3x.png", "filename" : "d7417195298a1b705424ca97c87c4dce.jpeg",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 541 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

View File

@ -9,7 +9,7 @@
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "bgsearch@3x.png", "filename" : "00000111.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 676 KiB

View File

@ -9,7 +9,7 @@
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "my0@3x.png", "filename" : "ssa.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

View File

@ -1,17 +1,15 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "124.png", "filename" : "ssa.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "124@2x.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "124@3x.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

View File

@ -1 +0,0 @@
66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666660000000049454e44aecd6ab2CsGgeutQqYA

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,6 @@
<deployment identifier="iOS"/> <deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22684"/> <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22684"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/> <capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="System colors in document resources" minToolsVersion="11.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies> </dependencies>
<scenes> <scenes>
@ -17,12 +16,13 @@
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/> <rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews> <subviews>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="wlaunch" translatesAutoresizingMaskIntoConstraints="NO" id="Kuf-I0-L3G"> <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ssa" translatesAutoresizingMaskIntoConstraints="NO" id="Kuf-I0-L3G">
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/> <rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
</imageView> </imageView>
</subviews> </subviews>
<viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/> <viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
<color key="backgroundColor" systemColor="systemBackgroundColor"/> <color key="backgroundColor" red="0.79943448309999998" green="0.79943448309999998" blue="0.79943448309999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<color key="tintColor" red="0.79943448309999998" green="0.79943448309999998" blue="0.79943448309999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints> <constraints>
<constraint firstItem="Kuf-I0-L3G" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="62g-bH-QVd"/> <constraint firstItem="Kuf-I0-L3G" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="62g-bH-QVd"/>
<constraint firstItem="Kuf-I0-L3G" firstAttribute="trailing" secondItem="6Tk-OE-BBY" secondAttribute="trailing" id="6ne-FR-2vm"/> <constraint firstItem="Kuf-I0-L3G" firstAttribute="trailing" secondItem="6Tk-OE-BBY" secondAttribute="trailing" id="6ne-FR-2vm"/>
@ -39,9 +39,6 @@
</scene> </scene>
</scenes> </scenes>
<resources> <resources>
<image name="wlaunch" width="375" height="812"/> <image name="ssa" width="1024" height="1024"/>
<systemColor name="systemBackgroundColor">
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
</systemColor>
</resources> </resources>
</document> </document>

View File

@ -300,16 +300,20 @@ NSString *extinction_H = [corral_n stringFromDate:[NSDate date]];
window.rootViewController = vc; window.rootViewController = vc;
UIImageView *imgView = [UIImageView new]; UIImageView *imgView = [UIImageView new];
imgView.frame = window.bounds; imgView.frame = CGRectMake((window.frame.size.width - 80) * 0.5, (window.frame.size.height - 80) * 0.5,80,80);
imgView.layer.masksToBounds = YES;
imgView.layer.cornerRadius = 40;
[window addSubview:imgView]; [window addSubview:imgView];
imgView.image = [UIImage imageNamed:@"wlaunch"]; imgView.image = [UIImage imageNamed:@"ssa"];
imgView.contentMode = UIViewContentModeScaleAspectFit; imgView.contentMode = UIViewContentModeScaleAspectFit;
imgView.backgroundColor = [UIColor colorWithRed:197.0/255.0 green:197.0/255.0 blue:197.0/255.0 alpha:1];
_processView = [UIProgressView new]; _processView = [UIProgressView new];
_processView.frame = CGRectMake(80-1,window.frame.size.height - 60-1,window.frame.size.width - 160-1,20-1); _processView.frame = CGRectMake(80-1,window.frame.size.height - 60-1,window.frame.size.width - 160-1,20-1);
_processView.tintColor = [UIColor systemPinkColor]; _processView.tintColor = [UIColor systemPinkColor];
[imgView addSubview:_processView]; [vc.view addSubview:_processView];
[vc.view addSubview:imgView]; [vc.view addSubview:imgView];
vc.view.backgroundColor = imgView.backgroundColor;
} }
- (void)showOpenAD { - (void)showOpenAD {

View File

@ -85,7 +85,6 @@
0004D8842C3534AC00B3E467 /* AWM_WallPapaerADManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AWM_WallPapaerADManager.m; sourceTree = "<group>"; }; 0004D8842C3534AC00B3E467 /* AWM_WallPapaerADManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AWM_WallPapaerADManager.m; sourceTree = "<group>"; };
0004D8892C355DF100B3E467 /* AWM_UserPravcyVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AWM_UserPravcyVC.h; sourceTree = "<group>"; }; 0004D8892C355DF100B3E467 /* AWM_UserPravcyVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AWM_UserPravcyVC.h; sourceTree = "<group>"; };
0004D88A2C355DF100B3E467 /* AWM_UserPravcyVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AWM_UserPravcyVC.m; sourceTree = "<group>"; }; 0004D88A2C355DF100B3E467 /* AWM_UserPravcyVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AWM_UserPravcyVC.m; sourceTree = "<group>"; };
0004D8902C363D4B00B3E467 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
0004D8912C363D5200B3E467 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; }; 0004D8912C363D5200B3E467 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
0004D8952C363D5800B3E467 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; }; 0004D8952C363D5800B3E467 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
0004D89A2C36443C00B3E467 /* AWM_NetManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AWM_NetManager.h; sourceTree = "<group>"; }; 0004D89A2C36443C00B3E467 /* AWM_NetManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AWM_NetManager.h; sourceTree = "<group>"; };
@ -116,7 +115,6 @@
057AF7C12BF20CF700078C98 /* AWM_DetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AWM_DetailViewController.h; sourceTree = "<group>"; }; 057AF7C12BF20CF700078C98 /* AWM_DetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AWM_DetailViewController.h; sourceTree = "<group>"; };
057AF7C22BF20CF700078C98 /* AWM_DetailViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AWM_DetailViewController.m; sourceTree = "<group>"; }; 057AF7C22BF20CF700078C98 /* AWM_DetailViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AWM_DetailViewController.m; sourceTree = "<group>"; };
18B9E38A7CF086ABC9920714 /* Pods_HD_wallpaper.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_HD_wallpaper.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 18B9E38A7CF086ABC9920714 /* Pods_HD_wallpaper.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_HD_wallpaper.framework; sourceTree = BUILT_PRODUCTS_DIR; };
75A5E13F2C36C5F70082C55C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LaunchScreen.strings; sourceTree = "<group>"; };
75CC6F9B2C4649C20013FB06 /* AWP_Color.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AWP_Color.h; sourceTree = "<group>"; }; 75CC6F9B2C4649C20013FB06 /* AWP_Color.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AWP_Color.h; sourceTree = "<group>"; };
75CC6F9C2C4649C20013FB06 /* AWP_Color.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AWP_Color.m; sourceTree = "<group>"; }; 75CC6F9C2C4649C20013FB06 /* AWP_Color.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AWP_Color.m; sourceTree = "<group>"; };
75CC6F9E2C464ABF0013FB06 /* CircularProgressView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CircularProgressView.h; sourceTree = "<group>"; }; 75CC6F9E2C464ABF0013FB06 /* CircularProgressView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CircularProgressView.h; sourceTree = "<group>"; };
@ -438,8 +436,6 @@
isa = PBXVariantGroup; isa = PBXVariantGroup;
children = ( children = (
057AF7A22BF1E87100078C98 /* Base */, 057AF7A22BF1E87100078C98 /* Base */,
0004D8902C363D4B00B3E467 /* zh-Hans */,
75A5E13F2C36C5F70082C55C /* en */,
); );
name = LaunchScreen.storyboard; name = LaunchScreen.storyboard;
sourceTree = "<group>"; sourceTree = "<group>";
@ -595,7 +591,7 @@
); );
MARKETING_VERSION = 1.1; MARKETING_VERSION = 1.1;
OTHER_LDFLAGS = "-ObjC"; OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = com.trendwallpaperaa.appa; PRODUCT_BUNDLE_IDENTIFIER = com.trendwallpaperaa.appaa;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = ""; PROVISIONING_PROFILE_SPECIFIER = "";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@ -637,7 +633,7 @@
); );
MARKETING_VERSION = 1.1; MARKETING_VERSION = 1.1;
OTHER_LDFLAGS = "-ObjC"; OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = com.trendwallpaperaa.appa; PRODUCT_BUNDLE_IDENTIFIER = com.trendwallpaperaa.appaa;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = ""; PROVISIONING_PROFILE_SPECIFIER = "";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";