ViewController 应用

 
再第一个XIB页面创建另一个XIB页面,并且通过按钮调用它
 
 
- (IBAction)GoSecond:(id)sender {
    secondViewController *secVC = [[secondViewController alloc] initWithNibName:@"secondViewController" bundle:nil];
    secVC.modalTransitionStyle = UIModalPresentationPageSheet;
    [self presentViewController:secVC animated:YES completion:^{
        NSLog(@"success ");
    }];
}
 
在第二个XIB页面创建一个按钮,按钮PRESS返回第一个页面
 
 
- (IBAction)Backfirst:(id)sender {
    [self dismissViewControllerAnimated:YES completion:^{
        NSLog(@"dismiss");
    }];
}
 
 
创造生命周期函数:
 
-(void)viewWillAppear:(BOOL)animated{
    [super viewWillAppear:animated];
    NSLog(@"view will appear");
}
-(void)viewDidAppear:(BOOL)animated{
    [super viewDidAppear:animated];
    NSLog(@"view did appear");
}
-(void)viewWillDisappear:(BOOL)animated{
    [super viewWillDisappear:animated];
    NSLog(@"view will disappear");
}
-(void)viewDidDisappear:(BOOL)animated{
    [super viewDidDisappear:animated];
    NSLog(@"view did disappear");
}
 
 
页面切换方法:
 
       secVC.modalTransitionStyle = UIModalPresentationPageSheet;
    UIModalPresentationFullScreen = 0,
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2
    UIModalPresentationPageSheet,
    UIModalPresentationFormSheet,
    UIModalPresentationCurrentContext,
#endif
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_7_0
    UIModalPresentationCustom,
    UIModalPresentationNone = -1,   
 
 
 
 
做成如下图片,类型:
 
 
 
 
主视图代码:
 
#import "UserModel.h"
@interface Xib_1 : UIViewController
@property (nonatomic, weak) UserModel *model;
-(void)sentRegistMessage:(UserModel *)user;
@end
 
 
- (IBAction)FirstButton:(id)sender {
    Xib_2 *xib2 = [[Xib_2 alloc] initWithNibName:@"Xib_2" bundle:nil];
    xib2.parentVC = self;
    xib2.modalTransitionStyle = UIModalPresentationPageSheet;
    [self presentViewController:xib2 animated:YES completion:^{
        
    }];
}
 
-(void)sentRegistMessage:(UserModel *)user{
    self.Label_1.text = [NSString stringWithFormat:@"恭喜,注册成功,用户名:%@,密码:%@,请牢记,谢谢合作。", user.name, user.pass];
    self.Label_1.numberOfLines = 0;
}
 
 
XIB2:
 
#import "Xib_1.h"

@interface Xib_2 : UIViewController
@property (nonatomic, weak) Xib_1 *parentVC;
@end
 
- (IBAction)Button_submit:(id)sender {
    UserModel *model = [[UserModel alloc] init];
    model.name = _nameLabel.text;
    model.pass = _passLabel.text;
    [self.parentVC sentRegistMessage:model];
    [self dismissViewControllerAnimated:YES completion:^{
    }];
}
 
 
UserModel:
 
@interface UserModel : NSObject
@property (nonatomic, copy)NSString *name;
@property (nonatomic, copy)NSString *pass;
@end
 
用协议可以限制权限:
 
 
 
小球移动的动画:
 
 
@implementation QFAppDelegate{
    UIView *redView;
}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    //动画
    redView=[[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    redView.backgroundColor=[UIColor redColor];
    [self.window addSubview:redView];
   
    UIButton *button=[UIButton buttonWithType:UIButtonTypeCustom];
    [button setTitle:@"开始动画" forState:UIControlStateNormal];
    [button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
    [button addTarget:self action:@selector(startAnim:) forControlEvents:UIControlEventTouchUpInside];
    button.frame=CGRectMake(100, 400, 100, 44);
    [self.window addSubview:button];

self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}
-(void)startAnim:(id)sender{
    [UIView animateWithDuration:1 animations:^{
        redView.frame=CGRectMake(100, 300, 150, 150);//大小位置
        redView.transform=CGAffineTransformMakeRotation(M_PI_4);//角度
    } completion:^(BOOL finished) {
        if (finished) {
            [UIView animateWithDuration:2 animations:^{
                redView.transform=CGAffineTransformIdentity;//把变形还原
                redView.frame=CGRectMake(100, 100, 100, 100);
            }];
        }
    }];
}

 
 
如图,做一个三本书旋转的动画例子:
 
 
 
通过animateWithDuration:animations方法来实现动画旋转效果,方便,快捷!
 
 
代码如下:
 
- (void)viewDidLoad
{
    
    [super viewDidLoad];
    [self begin];
    // Do any additional setup after loading the view from its nib.
}

-(void)begin
{
    imageView_3 = [[UIImageView alloc] initWithFrame:CGRectMake(30, 50, 100, 150)];
    imageView_2 = [[UIImageView alloc] initWithFrame:CGRectMake(200, 50, 100, 150)];
    imageView_1 = [[UIImageView alloc] initWithFrame:CGRectMake(80, 110, 140, 200)];

imageView_1.image = [UIImage imageNamed:[NSString stringWithFormat:@"1.jpg"]];
    imageView_2.image = [UIImage imageNamed:[NSString stringWithFormat:@"2.jpg"]];
    imageView_3.image = [UIImage imageNamed:[NSString stringWithFormat:@"3.jpg"]];

[_Subview addSubview:imageView_1];
    [_Subview addSubview:imageView_2];
    [_Subview addSubview:imageView_3];
    [_Subview bringSubviewToFront:imageView_1];

}
- (IBAction)PrePress:(id)sender {
    [UIView animateWithDuration:1 animations:^{
        [_Subview sendSubviewToBack:imageView_3];
        imageView_1.frame = CGRectMake(30, 50, 100, 150);
        imageView_2.frame = CGRectMake(80, 110, 140, 200);
        imageView_3.frame = CGRectMake(200, 50, 100, 150);
    }completion:^(BOOL finished) {
        //imageView_2.frame = CGRectMake(30, 50, 100, 150);
        [_Subview bringSubviewToFront:imageView_2];
        UIImageView *tmp;
        tmp = imageView_1;
        imageView_1 = imageView_2;
        imageView_2 = imageView_3;
        imageView_3 = tmp;
    }];

}
- (IBAction)NextPress:(id)sender {
    
    [UIView animateWithDuration:1 animations:^{
        [_Subview sendSubviewToBack:imageView_2];
        imageView_1.frame = CGRectMake(200, 50, 100, 150);
        imageView_2.frame = CGRectMake(30, 50, 100, 150);
        imageView_3.frame = CGRectMake(80, 110, 140, 200);
    }completion:^(BOOL finished) {
        imageView_2.frame = CGRectMake(30, 50, 100, 150);
        [_Subview bringSubviewToFront:imageView_3];
        UIImageView *tmp;
        tmp = imageView_1;
        imageView_1 = imageView_3;
        imageView_3 = imageView_2;
        imageView_2 = tmp;
    }];
}

 
 
 
 
 
 
 
 
 
 

IOS UI 第四篇:基本UI的更多相关文章

  1. 环信 之 iOS 客户端集成四:集成UI

    在Podfile文件里加入 pod 'EaseUI', :git => 'https://github.com/easemob/easeui-ios-cocoapods.git' 然后在终端中的 ...

  2. 环信 之 iOS 客户端集成四:集成UI 之 会话列表

    1. 初始化 EaseConversationListViewController *chatListVC = [[EaseConversationListViewController alloc] ...

  3. IOS设计模式第四篇之装饰设计模式的类别设计模式

    装饰设计模式 装饰设计模式动态的添加行为和责任向一个对象而不修改他的任何代码.他是你子类化修改类的行为用通过另一个对象的包装的代替方法. 在Objective-c里面有很多这种设计模式的实现,像cat ...

  4. UGUI的优点新UI系统四 开源

    UGUI的优点新UI系统四 开源 新UI系统是开源的,所以开发者可以看到新UI系统实现的源码,并加以修改和使用. 开源授权协议——MIT/X11 Unity所搭载的新UI系统,是在开源授权协议MIT/ ...

  5. iOS进阶指南试读之UI篇

    iOS进阶指南试读之UI篇 UI篇 UI是一个iOS开发工程师的基本功.怎么说?UI本质上就是你调用苹果提供给你的API来完成设计师的设计.所以,想提升UI的功力也很简单,没事就看看UIKit里的各个 ...

  6. 四核驱动的三维导航—淘宝新UI(设计篇)

    前面有一篇博客说到了淘宝UWP的"四核驱动的三维导航—淘宝新UI(需求分析篇)",花了两周的时间实现了这个框架,然后又陆陆续续用了三周的时间完善它. 多窗口导航,与传统的导航方式的 ...

  7. IOS UI 第八篇:基本UI

    实现图片的滚动,并且自动停止在每张图片上     - (void)viewDidLoad{    [super viewDidLoad]; UIScrollView *scrollView = [[U ...

  8. Android异步处理系列文章四篇之一使用Thread+Handler实现非UI线程更新UI界面

    目录: Android异步处理一:使用Thread+Handler实现非UI线程更新UI界面Android异步处理二:使用AsyncTask异步更新UI界面Android异步处理三:Handler+L ...

  9. 游戏模块分析总结(2)之UI、操作篇

    转自:http://www.gameres.com/309812.html 游戏模块分析总结(2)之UI.操作篇 发布者: wuye | 发布时间: 2014-12-12 15:03| 评论数: 0 ...

随机推荐

  1. Android发展简报

    Android这个词的本义是指“机器人”.同时它是Google至2007年11月5根据公布Linux台的开源手机操作系统的名称,该平台由操作系统.中间件.用户界面和应用软件组成.号称是首个为移动终端打 ...

  2. Nyoj 引水工程(最小生成树)

    描述 南水北调工程是优化水资源配置.促进区域协调发展的基础性工程,是新中国成立以来投资额最大.涉及面最广的战略性工程,事关中华民族长远发展.“南水北调工程”,旨在缓解中国华北和西北地区水资源短缺的国家 ...

  3. 开始折腾cocos2d-x,使用批处理来创建项目

    开始服用的时间来学习cocos2d-x该,尽管C和C++另外不咋.只是学习和记忆可能是更深层次的,现在发展: so从今天开始正式决定学会与自己的业余时间折腾吧,仅这51什么.昨天,在开发环境中建,Vi ...

  4. Mybatis 构造resultMap 搜sql

    映射配置文件 <!-- type:映射数据类型的实体类 id:resultMap的唯一标识 --> <resultMap type="person" id=&qu ...

  5. 随手记UIKit Dynamics

    以今年的优势WWDC品行,我记得一些明年的元素.一些博客上找到了新的功能没有被记录.认为iOS 8全力以赴.iOS 7该属性不随手记录为时已晚 :) 参考WWDC 2013的Session Video ...

  6. MVC自定义配置

    ASP.NET 5 入门 (2) – 自定义配置 ASP.NET 5 理解和入门 建立和开发ASP.NET 5 项目 初步理解ASP.NET5的配置 正如我的第一篇文章ASP.NET 5 (vNext ...

  7. JVMTI 中间JNI系列功能,线程安全和故障排除技巧

    JVMTI 中间JNI系列功能,线程安全和故障排除技巧 jni functions 在使用 JVMTI 的过程中,有一大系列的函数是在 JVMTI 的文档中 没有提及的,但在实际使用却是很实用的. 这 ...

  8. js拾遗:appendChild 添加移动节点

    原文:js拾遗:appendChild 添加移动节点 写js一年多了,一直以为自己很牛逼,开始写各种博文分享,昨天写了一篇<浅谈 IE下innerHTML导致的问题>在看了下面的评论,我才 ...

  9. 財智V6.0(完美破解序列号特别版)

    財智V6.0(完美破解序列号特别版)               財智V6.0(完美破解序列号特别版)   財智6是眼下唯一在中央台报道的.比較成熟的国产理財软件.能全面管理家庭的日常收入.消费.储蓄 ...

  10. Linux 经常使用 性能 检测 命令 说明

    1.uptime [root@smgsim02 ~]# uptime  15:08:15 up 98 days,  4:19,  2 users,  load average: 0.07, 0.29, ...