• 美图秀秀首页界面设计(一)


      本文设计了美图秀秀官方版的界面,从中可以学到自定义View,自动布局,启动界面设置。代码有点凌乱,我在一步步改善。【声明:本博客只能用作学习用途,不得用于商业用途,图片资源均来自官方,产生纠纷,本人不负责】

    项目中的图片资源均来自官方版的下载包中的图片(原始图片),这样我们可以通过模仿成功案例来学习iOS开发。[刚更新了项目下载地址,如需下载请滑到最下面点击项目下载.关于屏幕适配已更新]

      项目结构及介绍

      

    category组中存放对类的扩展

    Utiles中存放一些常用的代码

    controller中存放viewController文件

    network存放访问网络的工具类

    3rd lib存放项目中使用到的第三方类库

    views存放自定义视图

    models存放数据类

    images存放项目中的图片资源

      应用程序图标设置

    使用XCODE打开Images.xcassets文件,编辑AppIcon,如下图

    具体图标要求请参见苹果官方文档

    这样我们就设置了应用程序在桌面中的显示图标

      启动界面设置

      

      1.使用XCODE打开Images.xcassets文件,编辑LaunchImage,拖放具体图片资源。具体图标要求请参见苹果官方文档

      2.修改AppDelegate

      

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
        // Override point for customization after application launch.
        [NSThread sleepForTimeInterval:10.0];
        
    //    [application setStatusBarHidden:YES withAnimation:UIStatusBarAnimationFade];
        
        return YES;
    }

     在 application: didFinishLaunchingWithOptions:方法中添加

        [NSThread sleepForTimeInterval:10.0];

     10.0说明启动界面将持续10秒,一般我们设置为3.0就ok。可以根据你的需求来设置启动界面的时常。

     

      首页界面设计

          

    我将首页拆分为几个独立的视图,分别为

                     

    图一为简单的UIImageView对象 ,图二为自定义视图。图三为UIScrollView对象中包含8个自定义按钮,图四为简单的button,图五为简单的pageControl,图六为简单的button。适应多种分辨率。下面是Autolayout实现

     [self.view addConstraints:@[
                                    [NSLayoutConstraint constraintWithItem:self.topView attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeTop multiplier:1.0 constant:0],
                                    [NSLayoutConstraint constraintWithItem:self.topView attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeRight multiplier:1.0 constant:-6],
                                    [NSLayoutConstraint constraintWithItem:self.topView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:51],
                                    [NSLayoutConstraint constraintWithItem:self.topView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:61],
                                    
                                    [NSLayoutConstraint constraintWithItem:btnSetting attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeBottom multiplier:1.0 constant:-8],
                                    [NSLayoutConstraint constraintWithItem:btnSetting attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeRight multiplier:1.0 constant:-6],
                                    [NSLayoutConstraint constraintWithItem:btnSetting attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:39],
                                    [NSLayoutConstraint constraintWithItem:btnSetting attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:btnSetting attribute:NSLayoutAttributeWidth multiplier:1.0 constant:0],
                                    
                                    [NSLayoutConstraint constraintWithItem:self.scrolleView attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:image attribute:NSLayoutAttributeBottom multiplier:1.0 constant:0],
                                    [NSLayoutConstraint constraintWithItem:self.scrolleView attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeLeft multiplier:1.0 constant:0],
                                    [NSLayoutConstraint constraintWithItem:self.scrolleView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:WIDTH],
                                    [NSLayoutConstraint constraintWithItem:self.scrolleView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:HEIGHT - 47 - 61]
                                    ]];

    按钮的分页显示实现

        for (int i = 0; i < 8; i++) {
            NSInteger row  = i % 2;
            NSInteger col  = i / 2;
            NSInteger page = i / 6;
    
            if (col == 3) {
                col = 0;
            }
        
            btnHome = [FWButton buttonWithType:UIButtonTypeCustom];
            [btnHome setTitle:[textArr objectAtIndex:i] forState:UIControlStateNormal];
            [btnHome setImage:[UIImage imageNamed:[imageViewImageArr objectAtIndex:i]] forState:UIControlStateNormal];
            [btnHome setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:[imageViewBackImageArr objectAtIndex:i]]]];
            [btnHome setBackgroundColorHighlighted:[UIColor colorWithPatternImage:[UIImage imageNamed:[highLightedBackImageArr objectAtIndex:i]]]];
    //        btnHome.frame =CGRectMake([(NSString *)[xArr objectAtIndex:i] floatValue], [(NSString *)[yArr objectAtIndex:i] floatValue], kWidth, kheight);
            btnHome.frame = CGRectMake(row * (kWidth + kPadding) + page * WIDTH + startX, col * (kHeight + kPadding) + startY, kWidth, kHeight);
            [btnHome.titleLabel setFont:[UIFont systemFontOfSize:14]];
    
            [btnHome addTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
            btnHome.topPading = 0.5;
            
            [self.scrolleView addSubview:btnHome];
            self.scrolleView.contentSize = CGSizeMake(WIDTH * 2, kHeight * 3 + kPadding * 2);
        }

    主界面实现

    //
    //  ViewController.m
    //  FWMeituApp
    //
    //  Created by ForrestWoo on 15-9-16.
    //  Copyright (c) 2015年 ForrestWoo co,.ltd. All rights reserved.
    //375*667
    
    #define kLeftOffset  42
    #define kRightOffset 42
    #define kPadding     10
    #define kWidth       103
    #define kHeight      105
    
    
    #import "ViewController.h"
    #import "FWTopView.h"
    #import "FWButton.h"
    #import "UIImage+ImageScale.h"
    
    @interface ViewController ()
    @property (nonatomic, strong) FWTopView *topView;
    @property (nonatomic, assign)   CGRect     leftArrowFrame;
    @property (nonatomic, assign)   CGRect     rightArrowFrame;
    @end
    
    @implementation ViewController
    
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        
        
        self.navigationController.delegate = self;
        
        UIImageView *backImage = [[UIImageView alloc] initWithFrame:self.view.bounds];
        backImage.image = [UIImage imageNamed:@"bg_home@2x.jpg"];
        [self.view addSubview:backImage];
        
        self.scrolleView = [[UIScrollView alloc] init];
        self.scrolleView.translatesAutoresizingMaskIntoConstraints = NO;
        self.scrolleView.pagingEnabled = YES;
        self.scrolleView.showsHorizontalScrollIndicator = NO;
        self.scrolleView.showsVerticalScrollIndicator = NO;
        self.scrolleView.delegate = self;
        
        [self.view addSubview:self.scrolleView];
        
        UIImageView *image = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"bg_topview_topback_a.png"]];
        image.frame = CGRectMake(15, 15, 226.5, 51.5);
        [self.view addSubview:image];
        
        self.rightArrowFrame = CGRectMake(WIDTH - 30, HEIGHT / 2 - 50 / 2, 30, 50);
        self.leftArrowFrame = CGRectMake(5, HEIGHT / 2 - 50 / 2, 30, 50);
        
        btnArrow = [UIButton buttonWithType:UIButtonTypeCustom];
        
        btnArrow.frame = self.rightArrowFrame;
        [btnArrow setImage:[UIImage imageNamed:@"right_arrow@2x.png"] forState:UIControlStateNormal];
        [btnArrow setImage:[UIImage imageNamed:@"right_arrow_highlight@2x.png"] forState:UIControlStateHighlighted];
        [btnArrow addTarget:self action:@selector(btnArrowClicked:) forControlEvents:UIControlEventTouchUpInside];
        [self.view addSubview:btnArrow];
        
        //width = 51,height = 61.
        self.topView = [[FWTopView alloc] init];
        [self.view addSubview:self.topView];
        self.topView.translatesAutoresizingMaskIntoConstraints = NO;
        
        //width,height = 39
        UIButton *btnSetting = [UIButton buttonWithType:UIButtonTypeCustom];
        //    btnSetting.frame = CGRectMake(330, 620, 39, 39);
        [btnSetting setImage:[UIImage imageNamed:@"btn_home_setting_a@2x.png"] forState:UIControlStateNormal];
        [self.view addSubview:btnSetting];
        btnSetting.translatesAutoresizingMaskIntoConstraints = NO;
        
        [self.view addConstraints:@[
                                    [NSLayoutConstraint constraintWithItem:self.topView attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeTop multiplier:1.0 constant:0],
                                    [NSLayoutConstraint constraintWithItem:self.topView attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeRight multiplier:1.0 constant:-6],
                                    [NSLayoutConstraint constraintWithItem:self.topView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:51],
                                    [NSLayoutConstraint constraintWithItem:self.topView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:61],
                                    
                                    [NSLayoutConstraint constraintWithItem:btnSetting attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeBottom multiplier:1.0 constant:-8],
                                    [NSLayoutConstraint constraintWithItem:btnSetting attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeRight multiplier:1.0 constant:-6],
                                    [NSLayoutConstraint constraintWithItem:btnSetting attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:39],
                                    [NSLayoutConstraint constraintWithItem:btnSetting attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:btnSetting attribute:NSLayoutAttributeWidth multiplier:1.0 constant:0],
                                    
                                    [NSLayoutConstraint constraintWithItem:self.scrolleView attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:image attribute:NSLayoutAttributeBottom multiplier:1.0 constant:0],
                                    [NSLayoutConstraint constraintWithItem:self.scrolleView attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeLeft multiplier:1.0 constant:0],
                                    [NSLayoutConstraint constraintWithItem:self.scrolleView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:WIDTH],
                                    [NSLayoutConstraint constraintWithItem:self.scrolleView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:HEIGHT - 47 - 61]
                                    ]];
        [self.topView initView:@"20"];
        self.pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake((WIDTH - 50) / 2, HEIGHT - 39 , 50, 10)];
        self.pageControl.numberOfPages = 2;
        [self.view addSubview:self.pageControl];
        [self setupScrollView];
    }
    
    - (void)viewWillAppear:(BOOL)animated
    {
        [[UIApplication sharedApplication] setStatusBarHidden:YES];
    }
    
    //
    - (void)hanlderAction:(NSTimer *)timer
    {
        //    if (btnArrow.image.] == UIControlStateHighlighted)
        //    {
        //    }
    }
    
    - (void)btnArrowClicked:(id)sender
    {
        if (self.pageControl.currentPage ) {
            self.pageControl.currentPage = 0;
            [self toLeftArrow];
        }else{
            self.pageControl.currentPage = 1;
            [self toRightArrow];
    
        }
        
        CGRect frame = self.scrolleView.frame;
        frame.origin.x = frame.size.width * self.pageControl.currentPage;
        [self.scrolleView scrollRectToVisible:frame animated:YES];
    }
    
    - (void)toRightArrow
    {
        btnArrow.frame = self.leftArrowFrame;
        [btnArrow setImage:[UIImage imageNamed:@"left_arrow@2x.png"] forState:UIControlStateNormal];
    }
    
    - (void)toLeftArrow
    {
        btnArrow.frame = self.rightArrowFrame;
        [btnArrow setImage:[UIImage imageNamed:@"right_arrow@2x.png"] forState:UIControlStateNormal];
    }
    
    - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
    {
        int index = fabs(self.scrolleView.contentOffset.x / self.scrolleView.frame.size.width) ;
        self.pageControl.currentPage = index;
        
        if (index)
        {
            [self toRightArrow];
        }
        else
        {
            [self toLeftArrow];
        }
        
    }
    
    - (void)scrollViewDidScroll:(UIScrollView *)scrollView
    {
    }
    
    - (void)setupScrollView
    {
        NSArray *imageViewImageArr = [NSArray arrayWithObjects:
                                      @"icon_home_beauty@2x.png", @"icon_home_cosmesis@2x.png", @"icon_home_puzzle@2x.png",
                                      @"icon_home_camera@2x.png", @"icon_home_material@2x.png", @"icon_home_meiyan@2x.png",
                                      @"icon_home_meipai@2x.png", @"icon_home_moreapp@2x.png",
                                      nil];
        
        NSArray *highLightedBackImageArr = [NSArray arrayWithObjects:
                                            @"home_block_red_b@2x.png", @"home_block_pink_b@2x.png", @"home_block_green_b@2x.png",
                                            @"home_block_orange_b@2x.png", @"home_block_blue_b@2x.png", @"item_bg_purple_b@2x.png",
                                            @"home_block_pink_b@2x.png", @"home_block_red_b@2x.png",
                                            nil];
        NSArray *imageViewBackImageArr = [NSArray arrayWithObjects:
                                          @"home_block_red_a@2x.png", @"home_block_pink_a@2x.png", @"home_block_green_a@2x.png",
                                          @"home_block_orange_a@2x.png", @"home_block_blue_a@2x.png", @"item_bg_purple_a@2x.png",
                                          @"home_block_pink_a@2x.png", @"home_block_red_a@2x.png",
                                          nil];
    
        NSArray *textArr = [NSArray arrayWithObjects:@"美化图片", @"人像美容", @"拼图", @"万能相机", @"素材中心", @"美颜相机", @"美拍", @"更多功能", nil];
    
        FWButton *btnHome = nil;
        CGFloat startX = WIDTH /  2 - kPadding / 2 - kWidth;
        CGFloat startY = HEIGHT / 2 - kPadding - kHeight / 2 - kHeight -  61;
        for (int i = 0; i < 8; i++) {
            NSInteger row  = i % 2;
            NSInteger col  = i / 2;
            NSInteger page = i / 6;
    
            if (col == 3) {
                col = 0;
            }
        
            btnHome = [FWButton buttonWithType:UIButtonTypeCustom];
            [btnHome setTitle:[textArr objectAtIndex:i] forState:UIControlStateNormal];
            [btnHome setImage:[UIImage imageNamed:[imageViewImageArr objectAtIndex:i]] forState:UIControlStateNormal];
            [btnHome setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:[imageViewBackImageArr objectAtIndex:i]]]];
            [btnHome setBackgroundColorHighlighted:[UIColor colorWithPatternImage:[UIImage imageNamed:[highLightedBackImageArr objectAtIndex:i]]]];
    //        btnHome.frame =CGRectMake([(NSString *)[xArr objectAtIndex:i] floatValue], [(NSString *)[yArr objectAtIndex:i] floatValue], kWidth, kheight);
            btnHome.frame = CGRectMake(row * (kWidth + kPadding) + page * WIDTH + startX, col * (kHeight + kPadding) + startY, kWidth, kHeight);
            [btnHome.titleLabel setFont:[UIFont systemFontOfSize:14]];
    
            [btnHome addTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
            btnHome.topPading = 0.5;
            
            [self.scrolleView addSubview:btnHome];
            self.scrolleView.contentSize = CGSizeMake(WIDTH * 2, kHeight * 3 + kPadding * 2);
        }
    }
    
    - (void)btnClicked:(id)sender
    {
        if ([[(UIButton *)sender titleLabel].text isEqualToString:@"美化图片"]) {
            if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary])
            {
                imagePicker = [[UIImagePickerController alloc] init];
                
                imagePicker.delegate = self;
                imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
                [self presentViewController:imagePicker animated:YES completion:^{
                    [[UIApplication sharedApplication] setStatusBarHidden:YES];
    
                }
                 ];
            }
        }
    
    }
    
    #pragma mark - UIImagePickerControllerDelegate
    - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
    {
        UIImage *selectedImage = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
        UIImage *image = [UIImage imageCompressForWidth:selectedImage targetWidth:375];
        if (image.size.height > 520) {
            image = [UIImage imageCompressForWidth:selectedImage targetHeight:520];
        }
        currentImage = image;
    
            beautyVC = [[FWBeautyViewController alloc] initWithImage:currentImage];
            [imagePicker pushViewController:beautyVC animated:YES];
       
    }
    
    - (UIImage *)imageWithImageSimple:(UIImage *)image scaleToSize:(CGSize)Newsize
    {
        UIGraphicsBeginImageContext(Newsize);
        
        [image drawInRect:CGRectMake(0, 0, Newsize.width, Newsize.height)];
        UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();
        return newImage;
    }
    
    - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
    {
        [self dismissViewControllerAnimated:imagePicker completion:^{
            
        }];
    }
    
    @end
    #define WIDTH [UIScreen mainScreen].bounds.size.width
    #define HEIGHT [UIScreen mainScreen].bounds.size.height

    代码凌乱,正在逐步改善。。。。。。

    下载项目

  • 相关阅读:
    鼠标拖动DIV移动
    JS中事件&对象
    响应式与弹性布局
    JS中的变量和输入输出
    JS中的运算符&JS中的分支结构
    HTML基本标签
    CSS基础语法
    JS中循环结构&函数
    String 二
    StringBuffer
  • 原文地址:https://www.cnblogs.com/salam/p/5071738.html
Copyright © 2020-2023  润新知