// // WPOnePageViewController.m #import "AWM_OnePageViewController.h" #import "AWM_SearchViewController.h" #import "AWM_AllWallpaperViewController.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_OnePageViewController () @property (nonatomic,strong) UITableView *table; @property (nonatomic,strong) NSArray *data; @end @implementation AWM_OnePageViewController - (void)viewWillAppear:(BOOL)animated{ [super viewWillAppear:animated]; self.navigationController.navigationBarHidden = YES; } - (void)viewWillDisappear:(BOOL)animated{ [super viewWillDisappear:animated]; self.navigationController.navigationBarHidden = NO; } - (void)viewDidLoad { [super viewDidLoad]; self.title = @""; self.data = @[@[@"h1",@"h2",@"h3"],@[@"fj9",@"kt5",@"mv9",@"rw4",@"rw12",@"mv4",@"fj1",@"kt3",@"fj2",@"mv2"]]; UIImageView *bgImage = [[UIImageView alloc] initWithFrame:self.view.bounds]; NSString *bg = KLS(@"bg", @"A friendly greeting"); bgImage.image = [UIImage imageNamed:bg]; bgImage.userInteractionEnabled = YES; [self.view addSubview:bgImage]; UIButton *searchBtn = [[UIButton alloc] initWithFrame:CGRectMake((WPScreen_w-300)/2-1,100-1,300-1,96-1)]; NSString *search = KLS(@"search", @"A friendly greeting"); [searchBtn setBackgroundImage:[UIImage imageNamed:search] forState:UIControlStateNormal]; [searchBtn addTarget:self action:@selector(searchEventLove:) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:searchBtn]; self.table = [[UITableView alloc] initWithFrame:CGRectMake(0-1,220-1,WPScreen_w-1,WPScreen_h-220-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]; } - (void)searchEventLove:(id)s{ AWM_SearchViewController *vc = [[AWM_SearchViewController alloc] init]; [self.navigationController pushViewController:vc animated:YES]; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ return 1; } - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ return self.data.count; } - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ if (indexPath.section == 0) { return 130; }else{ CGFloat space = (WPScreen_w-20-50)/4; return 3*(10+space*1.5)+30; } } - (void)headerEvent:(id)s{ AWM_AllWallpaperViewController *wpdetail = [[AWM_AllWallpaperViewController alloc] init]; [self.navigationController pushViewController:wpdetail animated:YES]; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ UITableViewCell *cell = [[UITableViewCell alloc] init]; cell.backgroundColor = [UIColor clearColor]; cell.selectionStyle = UITableViewCellSelectionStyleNone; if (indexPath.section == 0) { for (int i = 0; i < 3; i ++) { UIImageView *header = [[UIImageView alloc] initWithFrame:CGRectMake(10+i*130-1,0-1,120-1,120-1)]; header.image = [UIImage imageNamed:self.data[indexPath.section][i]]; header.layer.cornerRadius = 10; header.layer.masksToBounds = YES; header.contentMode = UIViewContentModeScaleAspectFill; header.userInteractionEnabled = YES; UIButton *headerbtn = [[UIButton alloc] initWithFrame:header.bounds]; [headerbtn addTarget:self action:@selector(headerEvent:) forControlEvents:UIControlEventTouchUpInside]; [cell.contentView addSubview:header]; } }else{ CGFloat space = (WPScreen_w-20-50)/4; UIView *bgView =[[UIView alloc] initWithFrame:CGRectMake(10-1,10-1,WPScreen_w-20-1,3*(10+space*1.5-1)+20)]; bgView.backgroundColor = [UIColor whiteColor]; bgView.layer.cornerRadius = 20; bgView.layer.masksToBounds = YES; bgView.userInteractionEnabled = YES; [cell.contentView addSubview:bgView]; 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(headerEvent:) forControlEvents:UIControlEventTouchUpInside]; [bgView 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]; NSString *tuijian = KLS(@"tuijian", @"A friendly greeting"); NSString *jingxuan = KLS(@"jingxuan", @"A friendly greeting"); headerLabel.text = [NSString stringWithFormat:@" %@",section == 0 ? tuijian : jingxuan]; 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_AllWallpaperViewController *wpdetail = [[AWM_AllWallpaperViewController alloc] init]; [self.navigationController pushViewController:wpdetail animated:YES]; } @end