HDwallpaper/HDwallpaper/AWM_HotViewController.m
bluesea 2872cc6aeb d
2024-07-23 15:29:59 +08:00

126 lines
5.6 KiB
Objective-C

//
// AWM_HotViewController.m
#import "AWM_HotViewController.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_HotViewController ()<UITableViewDelegate,UITableViewDataSource>
@property (nonatomic,strong) UITableView *table;
@property (nonatomic,strong) NSArray *data;
@end
@implementation AWM_HotViewController
- (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];
NSString *greeting = KLS(@"bg", @"A friendly greeting");
bgImage.image = [UIImage imageNamed:greeting];
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(searchEvent) 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)searchEvent{
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{
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-1,10-1,WPScreen_w-20-1,3*(10+space*1.5-1)+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)-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];
}
UILabel *more = [[UILabel alloc] initWithFrame:CGRectMake(0-1,bgView.frame.size.height-40-1,bgView.frame.size.width-1,30-1)];
more.textColor = WP_COLOR_WITH_HEX(0XFF2C2C);
more.font = [UIFont boldSystemFontOfSize:18];
more.textAlignment = NSTextAlignmentCenter;
NSString *morebz = KLS(@"more", @"A friendly greeting");
more.text = [NSString stringWithFormat:@"%@",morebz];
[bgView addSubview:more];
return cell;
}
- (void)headerEvent{
AWM_AllWallpaperViewController *wpdetail = [[AWM_AllWallpaperViewController 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-1,0-1,WPScreen_w-1,50-1)];
headerLabel.textColor = WP_COLOR_WITH_HEX(0X333333);
headerLabel.font = [UIFont boldSystemFontOfSize:20];
NSString *remen = KLS(@"remen", @"A friendly greeting");
headerLabel.text = [NSString stringWithFormat:@" %@",remen];
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