两种状态的改变通过动画来渐变,设置动画效果,一般采用的方式有以下几种:方式一:[UIView
beginAnimations:(NSString *) context:];[UIView
setAnimationDuration:];/*****这里插入需要产生动画的片段*****/ [UIV...
分类:
其他好文 时间:
2014-07-22 23:09:14
阅读次数:
270
iOS Programming Recipe 6: Creating a custom
UIView using a NibJANUARY 7, 2013BYMIKETT12 COMMENTSCreating a custom UIView
using a NibAssumptionsYou are...
分类:
移动开发 时间:
2014-07-22 23:07:15
阅读次数:
651
转自:http://mobile.51cto.com/hot-430409.htm可能你很难相信,UIScrollView和一个标准的UIView差异并不大,scroll
view确实会多一些方法,但这些方法只是UIView一些属性的表面而已。因此,要想弄懂UIScrollView是怎么工作之前,你...
分类:
移动开发 时间:
2014-05-08 22:29:55
阅读次数:
642
在RootViewController.m文件中-
(void)viewDidLoad//视图加载方法- (void)viewDidLoad{ //设置红色 UIView *viewRed = [[UIView
alloc]initWithFrame:CGRectMake(100...
分类:
移动开发 时间:
2014-05-07 19:30:16
阅读次数:
414
? 新建一个继承UIView的自定义view,假设类名叫做(ABCAppView)?
新建一个ABCAppView.xib文件来描述ABCAppView内部的结构? 修改UIView的类型为ABCAppView真实类型?
将内部的子控件跟ABCAppView进行属性连线? ABCAppView提供一...
分类:
其他好文 时间:
2014-05-05 23:01:07
阅读次数:
270
今天我们想与大家分享另一套过渡效果。这一次,我们将探讨如何实现侧边栏的过渡动画,就像我们已经在多级推出菜单中使用的。我们的想法是,以细微的过渡动画显示一些隐藏的侧边栏,其余的内容也是。通常侧边栏滑入,把其他内容推到一边。这个可过程中可以加入很多微妙而奇特的效果,而今天这篇文章能够给你一些启示。 .....
分类:
Web程序 时间:
2014-05-04 20:35:00
阅读次数:
380
UIView的常见属性 1 @property(nonatomic,readonly)
UIView *superview; 2 获得自己的父控件对象 3 4 @property(nonatomic,readonly,copy) NSArray
*subviews; 5 获得自己的所有子控件对象.....
分类:
其他好文 时间:
2014-05-02 14:53:07
阅读次数:
249
self.myScrollView.frame =
CGRectMake(0,
self.stateNavigationHight-216+80,
320, [self
getUIScreenHight]-113);
[UIView
beginAnimations:@"roseImageViewAnimation"
context:(__bridge
void*)sel...
分类:
其他好文 时间:
2014-05-01 22:16:12
阅读次数:
362
exclusiveTouchA Boolean value that indicates
whether the receiver handles touch events exclusively.Setting this property to
YES causes the receiver to...
分类:
其他好文 时间:
2014-05-01 11:49:57
阅读次数:
296
有时候我们会需要在界面上拖动view;uiview是继承于uiresponder的,所以可以响应触摸相关的事件。
重点是以下一组方法:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent...
分类:
移动开发 时间:
2014-04-29 13:41:20
阅读次数:
485