Translate_offine/HD wallpaper/WPHotViewController.m
2024-07-03 14:33:32 +08:00

118 lines
5.4 KiB
Objective-C

//
// WPHotViewController.m
#import "WPHotViewController.h"
#import "WPSearchViewController.h"
#import "WPAllWallpaperViewController.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 WPHotViewController ()<UITableViewDelegate,UITableViewDataSource>
@property (nonatomic,strong) UITableView *table;
@property (nonatomic,strong) NSArray *data;
@end
@implementation WPHotViewController
- (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.view.userInteractionEnabled = YES;
self.data = @[@[@"fj9",@"kt8",@"mv2",@"fj8",@"rw11",@"mv6",@"rw12",@"rw18",@"fj1",@"kt5",@"rw8",@"mv10"]];
UIImageView *bgImage = [[UIImageView alloc] initWithFrame:self.view.bounds];
bgImage.image = [UIImage imageNamed:@"bg"];
bgImage.userInteractionEnabled = YES;
[self.view addSubview:bgImage];
UIButton *searchBtn = [[UIButton alloc] initWithFrame:CGRectMake((WPScreen_w-300)/2, 100, 300, 96)];
[searchBtn setBackgroundImage:[UIImage imageNamed:@"search"] forState:UIControlStateNormal];
[searchBtn addTarget:self action:@selector(searchEvent) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:searchBtn];
self.table = [[UITableView alloc] initWithFrame:CGRectMake(0, 220, WPScreen_w, WPScreen_h-220) 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)searchEvent{
WPSearchViewController *vc = [[WPSearchViewController 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{
CGFloat space = (WPScreen_w-20-50)/4;
return 3*(10+space*1.5)+30+40;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [[UITableViewCell alloc] init];
cell.backgroundColor = [UIColor clearColor];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
CGFloat space = (WPScreen_w-20-50)/4;
UIView *bgView =[[UIView alloc] initWithFrame:CGRectMake(10, 10, WPScreen_w-20, 3*(10+space*1.5)+20+40)];
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), 10+i/4*(10+space*1.5), space, space*1.5)];
[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];
}
UILabel *more = [[UILabel alloc] initWithFrame:CGRectMake(0, bgView.frame.size.height-40, bgView.frame.size.width, 30)];
more.textColor = WP_COLOR_WITH_HEX(0XFF2C2C);
more.font = [UIFont boldSystemFontOfSize:18];
more.textAlignment = NSTextAlignmentCenter;
more.text = [NSString stringWithFormat:@"%@",@"查看更多壁纸 >>"];
[bgView addSubview:more];
return cell;
}
- (void)headerEvent{
WPAllWallpaperViewController *wpdetail = [[WPAllWallpaperViewController alloc] init];
[self.navigationController pushViewController:wpdetail animated:YES];
}
- (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];
WPAllWallpaperViewController *wpdetail = [[WPAllWallpaperViewController alloc] init];
[self.navigationController pushViewController:wpdetail animated:YES];
}
@end