129 lines
5.3 KiB
Objective-C
129 lines
5.3 KiB
Objective-C
//
|
|
// WPwallpaperViewController.m
|
|
|
|
#import "WPwallpaperViewController.h"
|
|
#import "WPDetailViewController.h"
|
|
#import "AppDelegate.h"
|
|
#import "WallPapaerADManager.h"
|
|
#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 WPwallpaperViewController ()<UITableViewDelegate,UITableViewDataSource>
|
|
@property (nonatomic,strong) UITableView *table;
|
|
@property (nonatomic,strong) NSMutableArray *data;
|
|
@property(nonatomic,strong)UIButton *backItem;
|
|
@property(nonatomic,strong)UIImageView *navImage;
|
|
|
|
@end
|
|
|
|
@implementation WPwallpaperViewController
|
|
- (void)backItemEvent{
|
|
__weak typeof(self) weakSelf = self;
|
|
[[WallPapaerADManager shareInstance] showIntersitialAD_Back:^(NSInteger actionType) {
|
|
[weakSelf.navigationController popViewControllerAnimated:YES];
|
|
}];
|
|
|
|
// [self.navigationController popViewControllerAnimated:YES];
|
|
}
|
|
- (void)viewWillAppear:(BOOL)animated{
|
|
[super viewWillAppear:animated];
|
|
[self.navigationController.navigationBar addSubview:self.backItem];
|
|
[self.navigationController.navigationBar addSubview:self.navImage];
|
|
}
|
|
- (void)viewWillDisappear:(BOOL)animated{
|
|
[super viewWillDisappear:animated];
|
|
[self.backItem removeFromSuperview];
|
|
[self.navImage removeFromSuperview];
|
|
}
|
|
- (instancetype)init
|
|
{
|
|
self = [super init];
|
|
if (self) {
|
|
self.hidesBottomBarWhenPushed = YES;
|
|
}
|
|
return self;
|
|
}
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
self.title = @"";
|
|
self.navigationItem.hidesBackButton = YES;
|
|
|
|
AppDelegate *app = (AppDelegate *)[[UIApplication sharedApplication] delegate];
|
|
self.data = app.saveImages;
|
|
UIImageView *bgImage = [[UIImageView alloc] initWithFrame:self.view.bounds];
|
|
bgImage.image = [UIImage imageNamed:@"bg"];
|
|
bgImage.userInteractionEnabled = YES;
|
|
[self.view addSubview:bgImage];
|
|
|
|
UIButton *backItem = [[UIButton alloc] initWithFrame:CGRectMake(20, 0, 74, 44)];
|
|
[backItem setImage:[UIImage imageNamed:@"backitem"] forState:UIControlStateNormal];
|
|
[backItem addTarget:self action:@selector(backItemEvent) forControlEvents:UIControlEventTouchUpInside];
|
|
self.backItem = backItem;
|
|
|
|
UIImageView *navImage = [[UIImageView alloc] initWithFrame:CGRectMake(WPScreen_w-150, 8, 130, 28)];
|
|
navImage.image = [UIImage imageNamed:@"navmy"];
|
|
self.navImage = navImage;
|
|
|
|
self.table = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, WPScreen_w, WPScreen_h) style:UITableViewStyleGrouped];
|
|
self.table.delegate = self;
|
|
self.table.dataSource = self;
|
|
self.table.backgroundColor = [UIColor clearColor];
|
|
self.table.separatorColor = [UIColor clearColor];
|
|
[self.view addSubview:self.table];
|
|
}
|
|
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
|
|
return 1;
|
|
}
|
|
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
|
|
return 1;
|
|
}
|
|
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
|
|
CGFloat space = (WPScreen_w-50)/4;
|
|
return 3*(10+space*1.5)+10;
|
|
}
|
|
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
|
|
UITableViewCell *cell = [[UITableViewCell alloc] init];
|
|
cell.backgroundColor = [UIColor clearColor];
|
|
cell.selectionStyle = UITableViewCellSelectionStyleNone;
|
|
CGFloat space = (WPScreen_w-50)/4;
|
|
|
|
for (int i = 0; i < [self.data count]; i ++) {
|
|
UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(10+i%4*(10+space), 10+i/4*(10+space*1.5), space, space*1.5)];
|
|
[btn setImage:[UIImage imageNamed:self.data[i]] forState:UIControlStateNormal];
|
|
btn.layer.cornerRadius = 5;
|
|
btn.layer.masksToBounds = YES;
|
|
[btn addTarget:self action:@selector(headerEvent) forControlEvents:UIControlEventTouchUpInside];
|
|
[cell.contentView addSubview:btn];
|
|
}
|
|
return cell;
|
|
}
|
|
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
|
|
return 40;
|
|
}
|
|
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
|
|
return 10;
|
|
}
|
|
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
|
|
UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, WPScreen_w, 50)];
|
|
headerLabel.textColor = WP_COLOR_WITH_HEX(0X333333);
|
|
headerLabel.font = [UIFont boldSystemFontOfSize:20];
|
|
headerLabel.text = [NSString stringWithFormat:@" %@",@"保存的壁纸"];
|
|
return headerLabel;
|
|
}
|
|
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
|
|
return [[UIView alloc] init];
|
|
}
|
|
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
|
|
[tableView deselectRowAtIndexPath:indexPath animated:YES];
|
|
WPDetailViewController *wpdetail = [[WPDetailViewController alloc] init];
|
|
wpdetail.data = self.data;
|
|
[self.navigationController pushViewController:wpdetail animated:YES];
|
|
}
|
|
- (void)headerEvent{
|
|
WPDetailViewController *wpdetail = [[WPDetailViewController alloc] init];
|
|
wpdetail.data = self.data;
|
|
[self.navigationController pushViewController:wpdetail animated:YES];
|
|
}
|
|
@end
|