- 浏览: 98418 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
softlanh:
如果我用第一种方法截取一个不规则图形,截取后只保留需要的截取后 ...
iOS 画出不规则图形 -
netkiller.github.com:
世上竟有Obj-C 这么变态的语言, []的使用都快赶上 pe ...
获取iphone键盘所在view -
374016526:
此功能建议大家不要使用,如果要显示网页的东西还是自定义或UIW ...
UITextView显示HTML内容,实现显示不同的字体和文字颜色 -
qichunren:
在哪里在哪里、
iPhone闹钟
//
// TestBedViewControler_003.m
// UIViewAnimationsTest
//
// Created by mir on 11-4-1.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "TestBedViewControler_003.h"
@implementation TestBedViewControler_003
/*
// The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {
// Custom initialization
}
return self;
}
*/
/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
}
*/
- (void) animationFinished: (id) sender
{
self.navigationItem.rightBarButtonItem = BARBUTTON(@"Flip", @selector(filps:));
}
-(void) filps:(id) sender{
self.navigationItem.rightBarButtonItem=nil;
CGContextRef context = UIGraphicsGetCurrentContext();
[UIView beginAnimations:nil context:context];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:1.0f];
UIView *whiteBackdrop=[self.view viewWithTag:100];
if ([(UISegmentedControl *)self.navigationItem.titleView selectedSegmentIndex]) {
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:whiteBackdrop cache:YES];
}else {
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:whiteBackdrop cache:YES];
}
NSInteger purple = [[whiteBackdrop subviews] indexOfObject:[whiteBackdrop viewWithTag:999]];
NSInteger maroon = [[whiteBackdrop subviews] indexOfObject:[whiteBackdrop viewWithTag:998]];
[whiteBackdrop exchangeSubviewAtIndex:purple withSubviewAtIndex:maroon];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(animationFinished:)];
[UIView commitAnimations];
}
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.rightBarButtonItem=BARBUTTON(@"Filps",@selector(filps:));
UISegmentedControl *ucl=[[UISegmentedControl alloc] initWithItems:[@"Left Right" componentsSeparatedByString:@" "]];
ucl.selectedSegmentIndex=0;
ucl.segmentedControlStyle=UISegmentedControlStyleBar;
self.navigationItem.titleView=ucl;
[ucl release];
UIImageView *view1=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"1.png"]];
view1.tag=998;
UIImageView *view2=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"2.png"]];
view2.tag=999;
//UIView *view1=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 350)];
// view1.tag=998;
// view1.backgroundColor=[UIColor redColor];
// UIView *view2=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 350)];
// view2.tag=999;
// view2.backgroundColor=[UIColor greenColor];
UIView *views=[[UIView alloc] initWithFrame:CGRectMake(0, 0, view1.frame.size.width, view1.frame.size.height)];
views.tag=100;
views.backgroundColor=[UIColor blackColor];
[views addSubview:view1];
[views addSubview:view2];
[self.view addSubview:views];
[views release];
[view1 release];
[view2 release];
}
/*
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
*/
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload {
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (void)dealloc {
[super dealloc];
}
@end
发表评论
-
ios自定义framework
2015-07-14 16:33 641ios自定义framework,生成framework后,真 ... -
ios内付费
2015-07-14 16:15 815近年来写了很多IOS的程序,内付费也用到不少,使用IOS的 ... -
UIView 中加入的cocos2d,背景透明
2015-05-11 11:54 1354要点是首先pixelFormat:kEAGLColorForm ... -
CCDataVisitor.h, #include <string> 'string' file not found
2015-03-26 15:55 3368CCDataVisitor.h, #include < ... -
his device is no longer connected.
2015-01-15 15:09 2362his device is no longer connec ... -
idfa检查
2014-05-07 15:29 895cd到工程目录下然后执行下面的命令 grep -r ... -
UIColor 转 16进制颜色值
2014-04-25 15:27 907+ (NSString *)ToHex:(int)tmpid ... -
iOS 富文本控件
2014-04-25 15:24 912使用方式: NSString *t = [NSStr ... -
两个动画效果
2014-04-25 15:19 1061// 心跳动画 + (void)heartbeatView ... -
获取某一个class的私有Api
2014-04-25 15:17 763//知道怎么用私有api,要怎么获得 // ... -
iOS 画出不规则图形
2013-12-13 11:44 8460以下为大家提供一种绘制不规则图形的方法,实现原理利用图像的遮 ... -
关于IOS App唯一标示
2013-11-13 17:18 1379大家都知道苹果对于 ... -
关于IOS,UIViewController屏幕旋转
2013-07-23 15:30 6116关于ios上面旋转的问题,ios6以下我们大家都知道, - ... -
获取iphone键盘所在view
2012-12-13 14:31 1120UIView* kbView = nil; ... -
sqlite for iphone
2012-09-25 17:17 1096iphone开发中sqlite3的操作说明(转载) ... -
ios开发小知识
2012-07-17 14:18 1679ios开发小知识2(转自cc) 退 ... -
UIWebView获取html内容
2012-06-08 22:04 1821获取所有html:NSString *lJs = @&qu ... -
CALayer 缩放动画
2012-05-03 15:31 2732//放大 CAKeyframeAnim ... -
CALayer 按指定的点 运动
2012-05-03 15:30 1451CGMutablePathRef thePath = C ... -
目前最好用的IOS网易微博SDK
2012-04-09 15:36 1414网易微博上的SDK看上去不太明了,小弟这里对其进行了简单的封装 ...
相关推荐
"iPhone范例代码,翻转动画特效"这个主题聚焦于如何在iPhone应用中实现一种常见的动画效果——翻转效果。这种效果通常用于界面元素的切换,例如卡片翻转或者视图翻转,给人一种立体感和动态交互的体验。 苹果的...
1. **旋转动画**:在iOS中,可以使用`CABasicAnimation`或`CAKeyframeAnimation`来创建旋转动画。`CABasicAnimation`适用于简单的线性动画,而`CAKeyframeAnimation`则支持路径动画等更复杂的效果。通过设置`keyPath...
本项目聚焦于iPhone上的SceneTransition动画转换,包含了大约20多种不同的动画效果,适用于各种应用场合。这些动画不仅增加了应用程序的视觉吸引力,还使得用户在操作时更加直观和舒适。 首先,我们要理解...
本篇文章将深入探讨如何仿照iPhone中的视图切换翻转动画,实现两个`UIView`之间的平滑过渡。这个动画效果常见于苹果原生应用中,如联系人、日历等,在用户切换视图时,视图会像卡片一样翻转,增加用户体验的趣味性和...
在iOS应用开发中,"iPhone页面翻转效果"是一种常见的过渡动画,通常用于模拟实际书籍翻页的效果,为用户带来更生动、互动的体验。这种效果在电子杂志、电子书或者展示类应用中尤其常见,因为它能带给用户更加真实且...
在iOS开发中,帧动画是一种常见的视觉效果,用于创建连续的动态图像,比如游戏中的角色移动、物体旋转等。帧动画通常通过集合一系列静态图片(帧)并按顺序快速显示来实现。本教程将深入探讨如何在iPhone上实现帧...
"iPhone动画效果汇总"是一个示例代码集合,它展示了在iPhone平台上可以实现的各种动画效果。这些效果包括但不限于翻转、淡入淡出以及波纹效果,这些都是iOS用户界面动态交互的重要组成部分。 1. **翻转动画**: ...
- UIView的animateWithDuration方法:这是最常用的简单动画API,可以快速创建位移、旋转、缩放等动画。 - 动画块(block):通过动画块,可以自定义动画的开始、结束状态以及中间过渡。 - 动画组:可以将多个动画...
3. **transform 属性**:允许我们对元素进行2D或3D转换,如旋转、缩放、移动等,这些都是创建滑动动画的关键。例如: ```css element { transform: translateX(100px); } ``` 这将使元素向右移动100像素。 4....
1. **UIView动画**:这是最常用的动画类型,适用于对UIView对象进行简单的平移、旋转、缩放等操作。在描述中提到的按钮漂浮效果,很可能是通过修改按钮的frame或者center属性来实现的。利用`UIView.animate...
标题提到的“防iPhone动画效果”可能是指Android开发者尝试实现与iOS设备上相似的流畅、精致的动画,以增强应用的吸引力和用户互动性。Android系统提供了多种动画机制,使得开发者能够创建出丰富多彩的视觉效果。...
iPhone应用程序中的动画可以分为多个层次,从简单的视图平移和旋转到复杂的自定义动画。本文将深入探讨如何在iPhone应用中实现动画,特别是基于代码实现`AnimatedImageView`的动画效果。 首先,我们需要了解iOS中的...
在iOS平台上,为iPhone创建飘雪动画是一种常见的视觉特效,可以增强用户界面的美观性和互动性。这种动画通常用于冬季主题的应用或者庆祝圣诞节等节日。本文将深入探讨如何实现iPhone上的飘雪动画,并重点关注如何...
它主要负责处理屏幕上的动态效果,包括过渡动画、视图的移动、缩放、旋转等,以及复杂的视觉效果,如阴影、反射和透明度。 ### 2. Layer Classes 在Core Animation中,所有可视元素都是由层(Layer)表示的。层是...
Core Animation通过图层(CALayer)的概念,使得开发者可以轻松地创建复杂的视觉效果,包括形状动画、旋转、缩放、透明度变化等。 在创建圆环动画时,我们通常会使用CAShapeLayer,这是一个专门用于绘制矢量图形的...
3. 动画效果:如何平滑地执行旋转动画,使得菜单的展开和收起过程既快速又流畅。 4. 数据绑定:如何将菜单项的数据(如文字、图标)与实际的业务逻辑关联起来。 5. 容器管理:如何管理菜单项的添加、删除和更新,以...
通过调整层的位置、大小、透明度或旋转角度,可以实现各种动画效果。Core Animation会自动处理帧率和渲染,确保动画的平滑运行。 三、关键类与方法 1. `CALayer`:所有动画的基础,负责存储和绘制视觉内容。 2. `...
在本资源中,"CSS3 iPhone锁屏解锁动画特效.zip"提供了一个利用jQuery和CSS3技术构建的模拟iPhone锁屏解锁的互动效果。这个特效旨在为网页增添一种真实感,让用户仿佛在操作真正的iPhone设备。下面我们将深入探讨CSS...
在这个"iPhone咸鱼图片动画"的实现中,我们很可能会使用UIView动画,因为它更直观且易于使用。下面是一些关键步骤: 1. **数据模型设计**:为了管理多张图片,我们需要一个数据模型来存储图片URL或本地路径。可以...
【jQuery炫酷iPhone手机3D旋转互动特效】是一种利用JavaScript库jQuery实现的视觉效果,它为网页中的iPhone模型提供了一种动态的3D旋转展示。这个特效旨在提升用户体验,让用户能够通过鼠标操作从不同角度查看虚拟...