音乐界面简单布局

在 AppDelegate.m 中
导入头文件

#import "ViewController.h"  //  在 ViewController 中写引导页

在 didFinishLaunchingWithOptions 方法中更改主窗口

// 更改主窗口
    self.window.rootViewController = [[ViewController alloc] init];
    

引导页
在 ViewController.m 中
导入主页面的头文件 - 创建一个类 :例 类名为 :MainViewController

#import "MainViewController.h"  // 显示主页面的内容

定义 宏定义

// 屏幕的宽度和高度
#define WIDTH self.view.frame.size.width
#define HEIGHT self.view.frame.size.height

设置滚动视图的协议

<UIScrollViewDelegate>

定义属性

@property (nonatomic ,strong) NSArray *imgArr;  // 图片数组
@property (nonatomic ,strong) UIScrollView *ydyScrollView;  // 大的滚动视图
@property (nonatomic ,strong) UIPageControl *pageControl;   // 分页控件

在 viewDidLoad 中创建

- (void)viewDidLoad {
    [super viewDidLoad];
    
    // 创建滚动视图
    _ydyScrollView = [[UIScrollView alloc] initWithFrame:self.view.frame];
    _ydyScrollView.delegate = self;
    _ydyScrollView.backgroundColor = [UIColor redColor];
    [self.view addSubview:_ydyScrollView];
    
    _imgArr = @[@"1.jpg",@"2.jpg",@"3.jpg"];
    // for 循环加入图片
    for (int i = 0; i < _imgArr.count; i ++) {
        
        UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(WIDTH * i, 0, WIDTH, HEIGHT)];
        imgView.image = [UIImage imageNamed:_imgArr[i]];
        [_ydyScrollView addSubview:imgView];
        
        imgView.userInteractionEnabled = YES;
        // 在最后一张图片上添加完成按钮
        if (i == _imgArr.count - 1) {
            
            // 创建按钮
            UIButton *finishBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
            finishBtn.frame = CGRectMake((WIDTH - 100) / 2, 580, 100, 40);
            [finishBtn setTitle:@"完成" forState:UIControlStateNormal];
            [finishBtn setTitleColor:[UIColor magentaColor] forState:UIControlStateNormal];
            finishBtn.titleLabel.font = [UIFont systemFontOfSize:20];
            // 点击事件
            [finishBtn addTarget:self action:@selector(didClickFinishBtn) forControlEvents:UIControlEventTouchUpInside];
            [imgView addSubview:finishBtn];
        }
        
    }
    
    // 设置滚动视图的相关属性
    _ydyScrollView.contentSize = CGSizeMake(WIDTH * _imgArr.count, 0);
    _ydyScrollView.pagingEnabled = YES;
    _ydyScrollView.bounces = NO;
    _ydyScrollView.showsVerticalScrollIndicator = NO;
    _ydyScrollView.showsHorizontalScrollIndicator = NO;
    
    // 创建分页控件 并设置其相关的属性
    _pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake((WIDTH - 100) / 2, 660, 100, 50)];
    _pageControl.numberOfPages = _imgArr.count;
    _pageControl.pageIndicatorTintColor = [UIColor blackColor];
    _pageControl.currentPageIndicatorTintColor = [UIColor redColor];
    [self.view addSubview:_pageControl];
    
}

// 滚动视图的代理方法
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    _pageControl.currentPage = scrollView.contentOffset.x / WIDTH;
}
// 按钮的点击事件
-(void)didClickFinishBtn
{
    // 跳转到下一页
    MainViewController *mainVC = [[MainViewController alloc] init];
    UINavigationController *mainNav = [[UINavigationController alloc] initWithRootViewController:mainVC];
    [self presentViewController:mainNav animated:YES completion:nil];
}

在 MainViewController.m 中

// 宏定义
// 屏幕的宽度和高度
#define WIDTH self.view.frame.size.width
#define HEIGHT self.view.frame.size.height

设置表格的协议

<UITableViewDelegate, UITableViewDataSource>

定义属性,创建两个表格

@property (nonatomic ,strong) UITableView *leftTableView;
@property (nonatomic ,strong) UITableView *rightTableView;

在 viewDidLoad 中设置

- (void)viewDidLoad {
    [super viewDidLoad];
    
    // 设置视图的背景颜色
    self.view.backgroundColor = [UIColor whiteColor];
    
    // 设置导航条的左侧按钮
    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSearch target:self action:nil];
    
    // 导航条右侧按钮
    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"more_n"] style:UIBarButtonItemStylePlain target:self action:nil];
    
    // 更改导航条的背景颜色
    self.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:(16/255.0) green:(36/255.0) blue:(86/255.0) alpha:1.0];
    // 设置导航条上的控件的颜色
    self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
    
    // 导航条上的按钮
    [self createNavBtn];
    
    // 主体部分
    [self createTableView];
    
}

// 创建导航条上的按钮的方法

-(void)createNavBtn
{
    // 创建按钮标题
    NSArray *navTitArr = @[@"我的",@"乐库",@"唱歌"];
    // for 循环加入按钮
    for (int i = 0; i < navTitArr.count; i ++) {
        
        // 创建按钮
        UIButton *navTitBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        navTitBtn.frame = CGRectMake(WIDTH / 5 + WIDTH / 5 * i, 0, WIDTH / 5, 40);
        [navTitBtn setTitle:navTitArr[i] forState:UIControlStateNormal];
        [navTitBtn setTitleColor:[UIColor colorWithRed:(89/255.0) green:(103/255.0) blue:(136/255.0) alpha:1.0] forState:UIControlStateNormal];
        navTitBtn.titleLabel.font = [UIFont systemFontOfSize:20];
        
        [self.navigationController.navigationBar addSubview:navTitBtn];
        
        // 判断中间默认字体
        if (i == 1) {
            
            [navTitBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
            navTitBtn.titleLabel.font = [UIFont systemFontOfSize:21];
        }
    }
}

创建表格和主体内容的方法

// 创建表格和主体内容
-(void)createTableView
{
    // 创建大的图片框
    UIImageView *mainImgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 64, WIDTH, HEIGHT - 64)];
    mainImgView.image = [UIImage imageNamed:@"3.jpg"];
    [self.view addSubview:mainImgView];
    // 允许与用户交互
    mainImgView.userInteractionEnabled = YES;
    
    // for 循环加入标题按钮 - 顶部
    NSArray *topTitArr = @[@"排行",@"歌手",@"电台",@"儿歌",@"MV"];
    for (int i = 0; i < topTitArr.count; i ++) {
        
        UIButton *topBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        topBtn.frame = CGRectMake(WIDTH / 6 * i, 0, WIDTH / 6, 50);
        [topBtn setTitle:topTitArr[i] forState:UIControlStateNormal];
        [topBtn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        topBtn.titleLabel.font = [UIFont systemFontOfSize:18];
        [mainImgView addSubview:topBtn];
        // 判断默认选中为 电台
        if (i == 2) {
            
            [topBtn setTitleColor:[UIColor orangeColor] forState:UIControlStateNormal];
            topBtn.titleLabel.font = [UIFont systemFontOfSize:19];
        }
    }
    // 创建移动小视图
    UIView *moveView = [[UIView alloc] initWithFrame:CGRectMake(WIDTH / 6 * 2, 48, WIDTH / 6, 2)];
    moveView.backgroundColor = [UIColor orangeColor];
    [mainImgView addSubview:moveView];
    
    // 创建右侧的更多小按钮
    UIButton *moreBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    moreBtn.frame = CGRectMake(WIDTH - WIDTH / 6, 0, WIDTH / 6, 50);
    [moreBtn setImage:[[UIImage imageNamed:@"more_1"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal] forState:UIControlStateNormal];
    [mainImgView addSubview:moreBtn];
    
    
    // 左边表格
    _leftTableView = [[UITableView alloc] initWithFrame:CGRectMake(10, 50, WIDTH * 0.3 - 10, HEIGHT - 64 - 50 - 80) style:UITableViewStylePlain];
    _leftTableView.delegate = self;
    _leftTableView.dataSource = self;
    _leftTableView.backgroundColor = [UIColor clearColor];
    _leftTableView.rowHeight = (HEIGHT - 64 - 50 - 80)/10;
    _leftTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    [mainImgView addSubview:_leftTableView];
    
    // 右边表格
    _rightTableView = [[UITableView alloc] initWithFrame:CGRectMake(WIDTH * 0.3, 60, WIDTH * 0.7, HEIGHT - 64 - 50 - 80) style:UITableViewStylePlain];
    _rightTableView.delegate = self;
    _rightTableView.dataSource = self;
    _rightTableView.backgroundColor = [UIColor clearColor];
    _rightTableView.rowHeight = (HEIGHT - 64 - 50 - 80)/7;
    _rightTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    [mainImgView addSubview:_rightTableView];
    
    
    // 创建底部视图
    UIView *bottomView = [[UIView alloc] initWithFrame:CGRectMake(0, HEIGHT - 64 - 60, WIDTH, 60)];
    bottomView.backgroundColor = [UIColor blackColor];
    bottomView.alpha = 0.6;
    [mainImgView addSubview:bottomView];
    
    // 创建图片
    UIImageView *bottImg = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 60, 60)];
    bottImg.image = [UIImage imageNamed:@"22.jpg"];
    [bottomView addSubview:bottImg];
    // 创建标题
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(75, 10, 60, 20)];
    label.text = @"好好";
    label.textColor = [UIColor whiteColor];
    [bottomView addSubview:label];
    // 创建子标题
    UILabel *nameLabe = [[UILabel alloc] initWithFrame:CGRectMake(75, 35, 60, 20)];
    nameLabe.text = @"崔长春";
    nameLabe.textColor = [UIColor lightGrayColor];
    nameLabe.font = [UIFont systemFontOfSize:14];
    [bottomView addSubview:nameLabe];
    
    // 创建播放按钮
    UIButton *playerBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    playerBtn.frame = CGRectMake(WIDTH / 3 * 2, 10, 40, 40);
    [playerBtn setImage:[UIImage imageNamed:@"player_n"] forState:UIControlStateNormal];
    playerBtn.tintColor = [UIColor orangeColor];
    [bottomView addSubview:playerBtn];
    
    // 创建下一曲按钮
    UIButton *nextBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    nextBtn.frame = CGRectMake(WIDTH / 3 * 2 + 40, 10, 40, 40);
    [nextBtn setImage:[UIImage imageNamed:@"next_n"] forState:UIControlStateNormal];
    nextBtn.tintColor = [UIColor orangeColor];
    [bottomView addSubview:nextBtn];
    
    // 创建下一曲按钮
    UIButton *moreBtn1 = [UIButton buttonWithType:UIButtonTypeCustom];
    moreBtn1.frame = CGRectMake(WIDTH / 3 * 2 + 40 + 40, 10, 40, 40);
    [moreBtn1 setImage:[UIImage imageNamed:@"more_1"] forState:UIControlStateNormal];
    moreBtn1.tintColor = [UIColor orangeColor];
    [bottomView addSubview:moreBtn1];
}

设置表格的行数

// 设置表格的行数
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (tableView == _leftTableView) {
        
        return 9;
    }else if (tableView == _rightTableView){
        return 7;
    }else{
        return 0;
    }
}

设置表格的单元格内容

// 设置表格的单元格内容
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
    if (cell == nil) {
        
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"cell"];
    }
    
    if (tableView == _leftTableView) {
        // 创建左侧区域的内容
        NSArray *leftArr = @[@"推荐",@"心情",@"主题",@"人群",@"场景",@"曲风",@"语种",@"乐器",@"歌手"];
        cell.textLabel.text = leftArr[indexPath.row];
        cell.textLabel.font = [UIFont systemFontOfSize:18];
        if (indexPath.row == 0) {
            
            cell.textLabel.textColor = [UIColor orangeColor];
        }
    }else if (tableView == _rightTableView){
        
        NSArray *imgArr = @[@"11.jpg",@"12.jpg",@"21.jpg",@"22.jpg",@"31.jpg",@"32.jpg",@"11.jpg"];
        // 设置标题
        NSArray *titArr = @[@"一人一首成名曲",@"经典怀旧",@"网络热歌",@"秋天",@"90后电台",@"雨天",@"理发店"];
        // 设置副标题
        NSArray *detalArr = @[@"522.77万人在听",@"2344.0万人在听",@"521.4万人在听",@"21532.2万人在听",@"5321.2万人在听",@"53123万人在听",@"621.2万人在听"];
        cell.imageView.image = [UIImage imageNamed:imgArr[indexPath.row]];
        cell.textLabel.text = titArr[indexPath.row];
        cell.detailTextLabel.text = detalArr[indexPath.row];
        cell.detailTextLabel.textColor = [UIColor grayColor];
        cell.detailTextLabel.font = [UIFont systemFontOfSize:15];
    }
    cell.backgroundColor = [UIColor clearColor];
    
    return cell;
}
1.jpg
2.jpg
3.jpeg
11.jpg
12.jpg
21.jpg
22.jpg
31.jpg
32.jpg
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容