添加资源

This commit is contained in:
bluesea 2024-08-01 09:50:59 +08:00
parent f20bed9db4
commit 6e419a47e2
565 changed files with 6037 additions and 19 deletions

View File

@ -8,6 +8,59 @@
#define WPScreen_w [UIScreen mainScreen].bounds.size.width
#define WPScreen_h [UIScreen mainScreen].bounds.size.height
#define WP_COLOR_WITH_HEX(HEX) [UIColor colorWithRed:((HEX >> 16) & 0xFF) / 255.0f green:((HEX >> 8) & 0xFF) / 255.0f blue:((HEX) & 0xFF) / 255.0f alpha:1.0f]
@interface AllWallpaperViewCell : UITableViewCell
@property (nonatomic,strong) UIButton *btn1;
@property (nonatomic,strong) UIButton *btn2;
@property (nonatomic,strong) UIButton *btn3;
@property (nonatomic,strong) UIButton *btn4;
@end
@implementation AllWallpaperViewCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
_btn1 = [UIButton new];
_btn2 = [UIButton new];
_btn3 = [UIButton new];
_btn4 = [UIButton new];
[self.contentView addSubview:_btn1];
[self.contentView addSubview:_btn2];
[self.contentView addSubview:_btn3];
[self.contentView addSubview:_btn4];
CGFloat width = (WPScreen_w-50)/4;
_btn1.frame = CGRectMake(10, 10, width, width*1.5);
_btn2.frame = CGRectMake(20 + width, 10, width, width*1.5);
_btn3.frame = CGRectMake(30 + width*2, 10, width, width*1.5);
_btn4.frame = CGRectMake(40 + width*3, 10, width, width*1.5);
_btn1.layer.cornerRadius = 5;
_btn1.layer.masksToBounds = YES;
_btn2.layer.cornerRadius = 5;
_btn2.layer.masksToBounds = YES;
_btn3.layer.cornerRadius = 5;
_btn3.layer.masksToBounds = YES;
_btn4.layer.cornerRadius = 5;
_btn4.layer.masksToBounds = YES;
}
return self;
}
@end
@interface AWM_AllWallpaperViewController ()<UITableViewDelegate,UITableViewDataSource>
@property (nonatomic,strong) UITableView *table;
@property (nonatomic,strong) NSArray *data;
@ -64,6 +117,27 @@ elite_E *= generality_J;
}
return self;
}
- (NSArray <NSString *> *)getPicArr:(NSInteger)start end:(NSInteger)end {
NSMutableArray *marr = [NSMutableArray new];
for (NSInteger i = start; i <= end; i++) {
NSString *name = @"";
if (i < 10) {
name = [NSString stringWithFormat:@"zz_00%ld",i];
}
else if (i >= 10 && i < 100){
name = [NSString stringWithFormat:@"zz_0%ld",i];
}
else {
name = [NSString stringWithFormat:@"zz_%ld",i];
}
[marr addObject:name];
}
return marr;
}
- (void)viewDidLoad {
NSInteger synthetic_0 = 8;
@ -81,7 +155,10 @@ rejoin_C *= synthetic_0;
[backItem addTarget:self action:@selector(backItemEventLove:) forControlEvents:UIControlEventTouchUpInside];
self.backItem = backItem;
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"]];
self.data = @[[self getPicArr:1 end:20],
[self getPicArr:21 end:50],
[self getPicArr:51 end:80],
[self getPicArr:81 end:280]];
UIImageView *bgImage = [[UIImageView alloc] initWithFrame:self.view.bounds];
NSString *bg = KLS(@"bg", @"A friendly greeting");
bgImage.image = [UIImage imageNamed:bg];
@ -94,6 +171,8 @@ rejoin_C *= synthetic_0;
self.table.backgroundColor = [UIColor clearColor];
self.table.separatorColor = [UIColor clearColor];
[self.view addSubview:self.table];
[self.table registerClass:[AllWallpaperViewCell class] forCellReuseIdentifier:@"AllWallpaperViewCell"];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
@ -103,7 +182,7 @@ NSString *cohesion_F = [desalinize_4 stringFromDate:[NSDate date]];
[[NSUserDefaults standardUserDefaults] setObject:cohesion_F forKey:@"concurrence_O"];
return 1;
return [self.data[section] count] /4;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
@ -124,10 +203,12 @@ pecuniary_D *= inquisitive_2;
CGFloat space = (WPScreen_w-50)/4;
if (indexPath.section == 3) {
return 5*(10+space*1.5)+10;
}
return 3*(10+space*1.5)+10;
return (10+space*1.5);
// if (indexPath.section == 3) {
// return 5*(10+space*1.5)+10;
// }
// return ([self.data[indexPath.section] count]/4+1)*(10+space*1.5)+10;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
@ -137,20 +218,49 @@ NSString *robber_P = [indisputable_5 stringFromDate:[NSDate date]];
[[NSUserDefaults standardUserDefaults] setObject:robber_P forKey:@"mathematics_G"];
UITableViewCell *cell = [[UITableViewCell alloc] init];
AllWallpaperViewCell *cell = (AllWallpaperViewCell *)[tableView dequeueReusableCellWithIdentifier:@"AllWallpaperViewCell" forIndexPath:indexPath];
if (cell == nil) {
cell = [[AllWallpaperViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"AllWallpaperViewCell"];
}
cell.backgroundColor = [UIColor clearColor];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
CGFloat space = (WPScreen_w-50)/4;
cell.clipsToBounds = YES;
for (int i = 0; i < [self.data[indexPath.section] count]; i ++) {
UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(10+i%4*(10+space)-1,10+i/4*(10+space*1.5)-1,space-1,space*1.5-1)];
[btn setImage:[UIImage imageNamed:self.data[indexPath.section][i]] forState:UIControlStateNormal];
btn.layer.cornerRadius = 5;
btn.layer.masksToBounds = YES;
[btn addTarget:self action:@selector(headerEventLove:) forControlEvents:UIControlEventTouchUpInside];
btn.tag = indexPath.section;
[cell.contentView addSubview:btn];
}
cell.btn1.tag = indexPath.section;
cell.btn2.tag = indexPath.section;
cell.btn3.tag = indexPath.section;
cell.btn4.tag = indexPath.section;
[cell.btn1 setImage:nil forState:UIControlStateNormal];
[cell.btn2 setImage:nil forState:UIControlStateNormal];
[cell.btn3 setImage:nil forState:UIControlStateNormal];
[cell.btn4 setImage:nil forState:UIControlStateNormal];
NSArray *tempArr = self.data[indexPath.section];
indexPath.row*4 >= tempArr.count ?: [cell.btn1 setImage:[UIImage imageNamed:tempArr[indexPath.row*4]] forState:UIControlStateNormal];
indexPath.row*4 + 1 >= tempArr.count ?: [cell.btn2 setImage:[UIImage imageNamed:tempArr[indexPath.row*4+1]] forState:UIControlStateNormal];
indexPath.row*4 + 2 >= tempArr.count ?: [cell.btn3 setImage:[UIImage imageNamed:tempArr[indexPath.row*4+2]] forState:UIControlStateNormal];
indexPath.row*4 + 3 >= tempArr.count ?: [cell.btn4 setImage:[UIImage imageNamed:tempArr[indexPath.row*4+3]] forState:UIControlStateNormal];
[cell.btn1 addTarget:self action:@selector(headerEventLove:) forControlEvents:UIControlEventTouchUpInside];
[cell.btn2 addTarget:self action:@selector(headerEventLove:) forControlEvents:UIControlEventTouchUpInside];
[cell.btn3 addTarget:self action:@selector(headerEventLove:) forControlEvents:UIControlEventTouchUpInside];
[cell.btn4 addTarget:self action:@selector(headerEventLove:) forControlEvents:UIControlEventTouchUpInside];
cell.btn1.tag = indexPath.section;
cell.btn2.tag = indexPath.section;
cell.btn3.tag = indexPath.section;
cell.btn4.tag = indexPath.section;
// for (int i = 0; i < [self.data[indexPath.section] count]; i ++) {
// UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(10+i%4*(10+space)-1,10+i/4*(10+space*1.5)-1,space-1,space*1.5-1)];
// [btn setImage:[UIImage imageNamed:self.data[indexPath.section][i]] forState:UIControlStateNormal];
// btn.layer.cornerRadius = 5;
// btn.layer.masksToBounds = YES;
// [btn addTarget:self action:@selector(headerEventLove:) forControlEvents:UIControlEventTouchUpInside];
// btn.tag = indexPath.section;
// [cell.contentView addSubview:btn];
// }
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
@ -237,3 +347,4 @@ indoctrinate_A *= mendicant_h;
[self.navigationController pushViewController:wpdetail animated:YES];
}
@end

View File

@ -37,6 +37,26 @@ NSString *penetrate_d = [gregariousness_o stringFromDate:[NSDate date]];
[super viewWillDisappear:animated];
self.navigationController.navigationBarHidden = NO;
}
- (NSArray <NSString *> *)getPicArr:(NSInteger)start end:(NSInteger)end {
NSMutableArray *marr = [NSMutableArray new];
for (NSInteger i = start; i <= end; i++) {
NSString *name = @"";
if (i < 10) {
name = [NSString stringWithFormat:@"zz_00%ld",i];
}
else if (i >= 10 && i < 100){
name = [NSString stringWithFormat:@"zz_0%ld",i];
}
else {
name = [NSString stringWithFormat:@"zz_%ld",i];
}
[marr addObject:name];
}
return marr;
}
- (void)viewDidLoad {
NSDateFormatter *thousand_8 = [NSDateFormatter new];
@ -47,7 +67,7 @@ NSString *considerate_8 = [thousand_8 stringFromDate:[NSDate date]];
[super viewDidLoad];
self.title = @"";
self.data = @[@[@"fj2",@"h2",@"mv4"],@[@"mv2",@"fj9",@"kt3",@"h3",@"mv9",@"rw4",@"h1",@"fj1",@"rw12",@"kt5"]];
self.data = @[[self getPicArr:1 end:4],[self getPicArr:5 end:15]];
UIImageView *bgImage = [[UIImageView alloc] initWithFrame:self.view.bounds];
NSString *bg = KLS(@"bg", @"A friendly greeting");
bgImage.image = [UIImage imageNamed:bg];

View File

@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_001.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_002.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_003.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_004.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_005.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_006.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_007.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_008.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_009.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_010.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_011.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_012.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_013.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_014.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_015.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_016.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_017.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_018.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_019.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_020.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_021.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_022.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_023.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_024.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 741 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_025.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_026.jpg",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_027.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_028.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_029.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_030.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_031.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_032.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 330 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_033.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_034.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_035.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_036.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_037.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_038.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_039.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_040.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_041.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_042.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_043.jpg",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_044.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_045.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_046.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_047.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "zz_048.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Some files were not shown because too many files have changed in this diff Show More