// // AWM_wallpaperViewController.m #import "AWM_wallpaperViewController.h" #import "AWM_DetailViewController.h" #import "AppDelegate.h" #import "AWM_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 AWM_wallpaperViewController () @property (nonatomic,strong) UITableView *table; @property (nonatomic,strong) NSMutableArray *data; @property(nonatomic,strong)UIButton *backItem; @property(nonatomic,strong)UIImageView *navImage; @end @implementation AWM_wallpaperViewController - (void)backItemEventLove:(id)sender{ __weak typeof(self) weakSelf = self; [[AWM_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]; NSString *greeting = KLS(@"bg", @"A friendly greeting"); bgImage.image = [UIImage imageNamed:greeting]; bgImage.userInteractionEnabled = YES; [self.view addSubview:bgImage]; NSString *backitem = KLS(@"back", @"A friendly greeting"); UIButton *backItem = [[UIButton alloc] initWithFrame:CGRectMake(20-1,0-1,74-1,44-1)]; [backItem setImage:[UIImage imageNamed:backitem] forState:UIControlStateNormal]; [backItem addTarget:self action:@selector(backItemEventLove:) forControlEvents:UIControlEventTouchUpInside]; self.backItem = backItem; NSString *greeting3 = KLS(@"navmy", @"A friendly greeting"); UIImageView *navImage = [[UIImageView alloc] initWithFrame:CGRectMake(WPScreen_w-150-1,8-1,130-1,28-1)]; navImage.image = [UIImage imageNamed:greeting3]; self.navImage = navImage; self.table = [[UITableView alloc] initWithFrame:CGRectMake(0-1,0-1,WPScreen_w-1,WPScreen_h-1) 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)-1,10+i/4*(10+space*1.5)-1,space-1,space*1.5-1)]; [btn setImage:[UIImage imageNamed:self.data[i]] forState:UIControlStateNormal]; btn.layer.cornerRadius = 5; btn.layer.masksToBounds = YES; [btn addTarget:self action:@selector(headerEventLove:) 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-1,0-1,WPScreen_w-1,50-1)]; 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]; AWM_DetailViewController *wpdetail = [[AWM_DetailViewController alloc] init]; wpdetail.data = self.data; [self.navigationController pushViewController:wpdetail animated:YES]; } - (void)headerEventLove:(id)sender{ AWM_DetailViewController *wpdetail = [[AWM_DetailViewController alloc] init]; wpdetail.data = self.data; [self.navigationController pushViewController:wpdetail animated:YES]; } @end