码迷,mamicode.com
首页 >  
搜索关键字:uiview 过渡动画    ( 3119个结果
CALayer
1、初识:CALayer的UIView内部的一个层,在IOS中所有能显示内容在屏幕上是的控件,其本质都是因为这个内部的layer层。当一个UIView要显示内容的时候,会调用-(void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx 方...
分类:其他好文   时间:2014-08-12 00:02:13    阅读次数:266
ios UIView setFrame not working
ios UIView setFrame not working:很奇怪吧,又不报错,打印frame正常,可就是frame set无效。最简单的方法取interface builder 对该xib取消选择auto layout;
分类:移动开发   时间:2014-08-11 21:07:52    阅读次数:195
UITableView设置背景图片
UITableView设置背景图片:即设置tableView的backgroundViewUIView *view = [[UIView alloc] init]; view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imag...
分类:其他好文   时间:2014-08-11 20:40:52    阅读次数:192
UIControl-IOS开发
UIKit提供了一组控件:UISwitch开关、UIButtonbutton、UISegmentedControl分段控件、UISlider滑块、UITextField文本字段控件、UIPageControl分页控件。控件是对UIView派生类的有用增强及补充,并能够直接附着于导航栏、表格单元,甚至...
分类:移动开发   时间:2014-08-11 14:29:32    阅读次数:188
iOS:让UIView覆盖导航栏
当我们想做一个弹出式菜单时,想将导航栏也一起盖住不显示的话,可以用如下语句实现:UIView* myView = /* 你自定义的view */;UIWindow* currentWindow = [UIApplication sharedApplication].keyWindow;[curren...
分类:移动开发   时间:2014-08-11 11:28:52    阅读次数:1012
UIView头文件分析2--动画
+ (void)beginAnimations:(NSString *)animationID context:(void *)context; // additional context info passed to will start/did stop selectors. begin/com...
分类:其他好文   时间:2014-08-10 15:38:30    阅读次数:232
UIView常见属性总结
一 UIVIew 常见属性1.frame 位置和尺寸(以父控件的左上角为原点(0,0))2.center 中点 (以父控件的左上角为原点(0,0))3.bounds 位置和尺寸(以自己的左上角为原点 (0,0))4.transform 形变属性(缩放,旋转)5.backgroundColor 背景颜...
分类:其他好文   时间:2014-08-09 18:16:29    阅读次数:216
ios <Error>: CGAffineTransformInvert: singular matrix.
如果你尝试,并设置缩放比例为零,你会得到这个消息:: CGAffineTransformInvert: singular matrix.    [UIView animateWithDuration:0.5 animations:^{                 CGAffineTransform newTransform =  CGAffineTransformScale(my...
分类:移动开发   时间:2014-08-09 15:56:58    阅读次数:584
绘制虚线的UIView
绘制虚线的UIViewCAShapeLayer配合贝塞尔曲线可以绘制曲线,笔者继承了一个UIView的子类,并将改子类的backedLayer替换为CAShapeLayer,以此来实现绘制虚线的效果.绘制出各种虚线的效果图:实现的源码:LineDashView.h 与 LineDashView.m/...
分类:其他好文   时间:2014-08-09 00:00:16    阅读次数:493
iOS中动画的简单使用
//***简单动画 [UIView animateWithDuration:3 animations:^{// _animationView.center = CGPointMake(arc4random()%320, arc4random()%480);//改变中心点// _animat...
分类:移动开发   时间:2014-08-07 22:49:55    阅读次数:281
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!