摘要://// ViewController.m// UI-NO-36-2 锚点//// Created by 容伟 on 15/9/15.// Copyright (c) 2015年 容伟. All rights reserved.///*锚点: anchorPoint 以锚点为中心 执行动画 (与... 阅读全文
核心动画2
2015-10-16 05:23 by 真实16, 104 阅读, 0 推荐, 收藏, 编辑
摘要://// ViewController.m// UI-NO-36-1 核心动画-2//// Created by 容伟 on 15/9/15.// Copyright (c) 2015年 容伟. All rights reserved.//#import "ViewController.h"@int... 阅读全文
核心动画1
2015-10-16 05:22 by 真实16, 191 阅读, 0 推荐, 收藏, 编辑
摘要:/*使用核心动画 需导入QuarzCore 框架(现在 不需要)#import CALayer和UIView的关系:1、在UIView中有一个layer属性作为根图层,根图层没有隐式动画,根图层上可以放其他子图层,在UIview中所有能够看到的内容都包含在layer中2、CALayer负责视图中显示... 阅读全文
CALayer()CoreAnimation 核心动画 简称 CA
2015-10-16 05:20 by 真实16, 185 阅读, 0 推荐, 收藏, 编辑
摘要:/*CoreAnimation 核心动画 简称 CA一、动画块frame bounds center alphaTransition 过渡transform 动画效果二、之前使用过得UIView动画,其本质上也是CoreAnimation实现的,知识对他里面的动画进行了封装视图(UIView)支持动... 阅读全文
storyBoard
2015-10-16 05:17 by 真实16, 209 阅读, 0 推荐, 收藏, 编辑
摘要:#import "ViewController.h"#import "HomeViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super vi... 阅读全文
本地通知UILocalNotification
2015-10-16 05:13 by 真实16, 202 阅读, 0 推荐, 收藏, 编辑
摘要:/*本地通知(UILocalNotification) 操作流程:1、接收通知- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notificatio... 阅读全文
CoreImage 可以用滤镜来处理图片,比如修改饱和度,亮度,对比度等
2015-10-16 05:10 by 真实16, 1282 阅读, 0 推荐, 收藏, 编辑
摘要://// ViewController.m// UI-CoreImage//// Created by Bruce on 15/5/22.// Copyright (c) 2015年 Bruce. All rights reserved.///*CoreImage 可以用滤镜来处理图片,比如修改饱和... 阅读全文
GCD(2)
2015-10-16 05:08 by 真实16, 482 阅读, 0 推荐, 收藏, 编辑
摘要://// ViewController.m// UI-NO.26-GCD//// Created by Bruce on 15/8/27.// Copyright (c) 2015年 Bruce. All rights reserved.///*Grand Central Dispatch (GCD... 阅读全文
GCD(1)
2015-10-16 05:07 by 真实16, 180 阅读, 0 推荐, 收藏, 编辑
摘要://// ViewController.m// UI-NO-26//// Created by Bruce on 15/8/28.// Copyright (c) 2015年 Bruce. All rights reserved.//#import "ViewController.h"@interf... 阅读全文
NSOperation(多线程)2
2015-10-16 05:04 by 真实16, 188 阅读, 0 推荐, 收藏, 编辑
摘要://// ViewController.m// UI-NO.25多线程-2//// Created by Bruce on 15/8/26.// Copyright (c) 2015年 Bruce. All rights reserved.///*NSOperation 是一个 基类 (抽象类) 不... 阅读全文