APP 知乎日报 启动界面的实现分享

一、前言

刚开始看到知乎日报的启动界面时,下面的动画logo以及配上好看的图片,特别舒服。然后老毛病又犯了,想着怎么去实现它,好了,下面还是说说这效果的实现。

二、效果图

demo0.gif

三、需要掌握的

这里的重点在于logo动画的实现。这里用到的是用CGContextRef画图。 思路为自定义一个继承UIView的view,然后重写drawRect方法,在这个方法里画图。Graphics Context是图形上下文,可以将其理解为一块画布,我们可以在上面进行绘画操作,绘制完成后,将画布放到我们的view中显示即可,view看作是一个画框。
下面介绍一些常用的图形

a. 画圆

//context就相当于是画布
CGContextRef context = UIGraphicsGetCurrentContext();
//画笔线的颜色
CGContextSetRGBStrokeColor(context, 1, 1, 1, 1.0);
//设置填充颜色 (这里没什么用)
CGContextSetRGBFillColor (context,  1, 0, 0, 1.0);
//线的宽度
CGContextSetLineWidth(context, 1.0);
//参数分别为:哪个画布,圆点坐标x,圆点坐标y,半径,开始的弧度,结束的弧度,clockwise 0为顺时针,1为逆时针。
//添加一个圆
CGContextAddArc(context, 100, 20, 15, 0, 2*M_PI, 0); 
//绘制路径
CGContextDrawPath(context, kCGPathStroke);

注:这里最后的kCGPathStroke有很多类型:

typedef CF_ENUM (int32_t, CGPathDrawingMode) {
  kCGPathFill, // 填充
  kCGPathEOFill,
  kCGPathStroke, // 只画边框
  kCGPathFillStroke,
  kCGPathEOFillStroke // 填充和边框
};

b. 直线

CGPoint aPoints[3];//坐标点
aPoints[0] = CGPointMake(100, 80);//坐标1
aPoints[1] = CGPointMake(130, 80);//坐标2
aPoints[2] = CGPointMake(130, 100);//坐标3
//参数分别为:哪个画布,坐标数组, 个数。
CGContextAddLines(context, aPoints, 3);//添加线
CGContextDrawPath(context, kCGPathStroke); //根据坐标绘制路径

c. 矩形

CGContextSetFillColorWithColor(context, [UIColor blueColor].CGColor);//填充颜色CGContextSetStrokeColorWithColor(context, [UIColor yellowColor].CGColor);//线框颜色
CGContextAddRect(context,CGRectMake(140, 120, 60, 30));//画方框
CGContextDrawPath(context, kCGPathFillStroke);//绘画路径

其实矩形完全可以用画直线的方式实现。

四、实现

新建一个view继承UIView并重写drawRect方法

- (instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        self.backgroundColor = [UIColor clearColor];
        self.layer.cornerRadius = 10;
        self.layer.borderColor = [UIColor whiteColor].CGColor;
        self.layer.borderWidth = 1;
    }
    return self;
}

- (void)drawRect:(CGRect)rect
{
    CGFloat radius = 12;
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextAddArc(context, self.bounds.size.width * 0.5, self.bounds.size.width * 0.5, radius, M_PI/2, 0, 0);
    CGContextSetLineWidth(context, 5);
    [[UIColor lightGrayColor] set];
    CGContextStrokePath(context);
}

先看效果:

demo1.png

已经有了logo但是没有动画。动画实现的思路是使用定时器。代码如下:

- (instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        self.backgroundColor = [UIColor clearColor];
        self.layer.cornerRadius = 10;
        self.layer.borderColor = [UIColor whiteColor].CGColor;
        self.layer.borderWidth = 1;
        
        _timer = [NSTimer timerWithTimeInterval:0.01 target:self selector:@selector(timerAction) userInfo:nil repeats:YES];
        [[NSRunLoop mainRunLoop] addTimer:_timer forMode:NSRunLoopCommonModes];
        _count = 1;
        _maxCount = 100;
    }
    return self;
}

- (void)timerAction
{
    if (_count == _maxCount) {
        [_timer invalidate];
        self.animationDoneBlock();
        return;
    } else {
        _count ++;
        [self setNeedsDisplay];
    }
}

- (void)drawRect:(CGRect)rect
{
    CGFloat radius = 12;
    CGContextRef context = UIGraphicsGetCurrentContext();
    // 重点,计算当前的终点角度
    CGFloat angle = (M_PI*3/2)/_maxCount * _count + M_PI/2;
    CGContextAddArc(context, self.bounds.size.width * 0.5, self.bounds.size.width * 0.5, radius, M_PI/2, angle, 0);
    CGContextSetLineWidth(context, 5);
    [[UIColor lightGrayColor] set];
    CGContextStrokePath(context);
}

解释一下代码,每0.01秒执行一次timerAction方法,如果当前的count没有到达maxCount,那就重绘视图,然后angle会根据当前的终点角度,由于每0.01秒重绘一次,就会有较光滑的动画效果。
当到达maxCount时候,回调。告诉控制器动画结束。

控制器代码:

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    [self setupView];
    
    [self getData];
}

- (void)setupView
{
    self.imageView = [UIImageView new];
    self.imageView.frame = [UIScreen mainScreen].bounds;
    self.imageView.backgroundColor = [UIColor blackColor];
    [self.view addSubview:self.imageView];
    
    
    self.textLabel = [UILabel new];
    self.textLabel.frame = CGRectMake(0, [UIScreen mainScreen].bounds.size.height-125, [UIScreen mainScreen].bounds.size.width, 20);
    self.textLabel.textColor = [UIColor whiteColor];
    self.textLabel.font = [UIFont systemFontOfSize:12];
    self.textLabel.textAlignment = NSTextAlignmentCenter;
    [self.imageView addSubview:self.textLabel];
    
    
    UIView *bottomView = [UIView new];
    bottomView.frame = CGRectMake(0, [UIScreen mainScreen].bounds.size.height-95, [UIScreen mainScreen].bounds.size.width, 95);
    bottomView.backgroundColor = [UIColor colorWithWhite:0.13 alpha:1.0];
    [self.imageView addSubview:bottomView];
    
    // 创建logoView
    self.logoView = [[YQLogoView alloc] initWithFrame:CGRectMake(25, 25, 45, 45)];
    __weak __typeof(self) weakSelf  = self;
    [self.logoView setAnimationDoneBlock:^{
        [weakSelf hide];
    }];
    [bottomView addSubview:self.logoView];
    
    UILabel *label1 = [UILabel new];
    label1.frame = CGRectMake(80, 20, 200, 30);
    label1.font = [UIFont systemFontOfSize:19];
    label1.text = @"知乎日报";
    label1.textColor = [UIColor whiteColor];
    [bottomView addSubview:label1];
    
    UILabel *label2 = [UILabel new];
    label2.frame = CGRectMake(80, 50, 200, 20);
    label2.font = [UIFont systemFontOfSize:15];
    label2.text = @"每天三次,每次七分钟";
    label2.textColor = [UIColor lightGrayColor];
    [bottomView addSubview:label2];
}

- (void)getData
{
    // 获得NSURLSession对象
    NSURLSession *session = [NSURLSession sharedSession];

    // 创建请求
    NSString *urlStr = @"http://news-at.zhihu.com/api/4/start-image/1080*1776";
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:urlStr]];
    
    // 创建任务
    NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
        NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil];
        NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:dic[@"img"]]];
        dispatch_async(dispatch_get_main_queue(), ^{
            self.textLabel.text = dic[@"text"];
            self.imageView.image = [UIImage imageWithData:imageData];
        });
    }];
    
    // 启动任务
    [task resume];
}

- (void)hide
{
    [UIView animateWithDuration:0.8 delay:1.0 options:0 animations:^{
        self.view.transform = CGAffineTransformMakeScale(1.2, 1.2);
        self.view.alpha = 0.01;
    } completion:^(BOOL finished) {
        [self.view removeFromSuperview];
    }];
}

拓展

展示启动界面的方法也有很多,我这里使用的是建一个UIWindow的分类,并自定义展示方法。方法的实现:

- (void)showLanuchPage
{
    YQLaunchViewController *launchVC = [[YQLaunchViewController alloc] init];
    [self addSubview:launchVC.view];
}

使用:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{
    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    self.window.backgroundColor = [UIColor whiteColor];
    self.window.rootViewController = [[ViewController alloc] init];
    [self.window makeKeyAndVisible];
    [self.window showLanuchPage];
    return YES;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,558评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,002评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,036评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,024评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,144评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,255评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,295评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,068评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,478评论 1 305
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,789评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,965评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,649评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,267评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,982评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,800评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,847评论 2 351

推荐阅读更多精彩内容