码迷,mamicode.com
首页 > 其他好文 > 详细

【代码笔记】剧幕拉开形的首页

时间:2016-04-14 09:23:16      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

一,工程图。

技术分享

二,代码。

RootViewController.h

技术分享
#import <UIKit/UIKit.h>
#import "UIImage+SplitImageIntoTwoParts.h"

@interface RootViewController : UIViewController
{
    UIImageView *left;
    UIImageView *right;
}

@end
技术分享

 

RootViewController.m

技术分享
#import "RootViewController.h"

@interface RootViewController ()

@end

@implementation RootViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    
    NSArray *array = [UIImage splitImageIntoTwoParts:[UIImage imageNamed:@"1"]];
    
    left = [[UIImageView alloc] initWithImage:[array objectAtIndex:0]];
    right = [[UIImageView alloc] initWithImage:[array objectAtIndex:1]];
    
    left.transform = CGAffineTransformIdentity;
    right.transform = CGAffineTransformIdentity;
    
    [self.view addSubview:left];
    [self.view addSubview:right];
    
    [UIView beginAnimations:@"split" context:nil];
    [UIView setAnimationDelegate:self];
    [UIView setAnimationDuration:1];
    [UIView setAnimationDidStopSelector:@selector(animationDidStop:finished:context:)];
    
    left.transform = CGAffineTransformMakeTranslation(-160 ,0);
    right.transform = CGAffineTransformMakeTranslation(160 ,0);
    
    [UIView commitAnimations];

}
-(void)animationDidStop:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context
{
    if ([animationID isEqualToString:@"split"] && finished) {
        [left removeFromSuperview];
        [right removeFromSuperview];
    }
}
技术分享

 

 

 
 

【代码笔记】剧幕拉开形的首页

标签:

原文地址:http://www.cnblogs.com/yang-guang-girl/p/5389818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!