码迷,mamicode.com
首页 >  
搜索关键字:uiview calayer    ( 3240个结果
简易计算器制作
@interface EricAppDelegate () { UIView *_containView; UILabel *_label; UIButton *_butt; NSMutableString *str; } @property(assign,nonatomic)double num1,num2,num3,num4; @end @implementa...
分类:其他好文   时间:2014-08-26 09:56:45    阅读次数:257
Flappy bird 小游戏的实现
//3.0初速度需要60秒减少至0 const float MaxTime = 50; //加速度,方向向下 const float VG = 0.05; //初速度 const float MaxV = 2.5; //初始化总路程 const float AllLength = 692; typedef enum { GameNoStart, GamePlaying, ...
分类:移动开发   时间:2014-08-26 09:55:55    阅读次数:354
UIview 学习与自定义--ios
UIView *view1=[[UIView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)]; view1.backgroundColor=[UIColor yellowColor]; view1.tag=1; ...
分类:移动开发   时间:2014-08-26 01:42:45    阅读次数:223
ios中使view向左移动,且右边不动
ios中使view向左移动,且右边不动...
分类:移动开发   时间:2014-08-25 15:02:44    阅读次数:248
IOS 内存泄漏
最近在做涂鸦小程序的时候,发现几个内存问题。涂鸦Demo这个程序打开后是进入到相册选择图片,接着载入一个UIScrollView,然后在UIScrollView上添加一个UIImageView,再将选择图片设置为ImageView的Image。涂鸦的时候,将一个UIView加在UIImageView...
分类:移动开发   时间:2014-08-24 22:10:13    阅读次数:353
UILabel,UITextField,UIButton
//UIlabel 是ios中开发用来显示文字的控件,是UIview的子类,所以具有UIview的所有功能,还具有了可以显示文字的功能     //UILabel使用过程和UIview类似,也是分四步:     //1,创建对象     //2.配置属性     //3.添加到父视图     //释放所有权     //记住规律:不同的控件之间只是配置的属性的...
分类:其他好文   时间:2014-08-24 14:16:12    阅读次数:235
关灯游戏(iOS)
在.h中声明属性如下 @property (retain, nonatomic) UIWindow *window; @property (nonatomic, retain) UIView *aView; @property (nonatomic, retain) UIButton *button; 在.m中实现如下 @implementation MAYAppDelegate...
分类:移动开发   时间:2014-08-24 14:15:12    阅读次数:273
Tint Color的理解和APP简单的主题化
自从iOS7,UIView有了一个新的属性tintColor,它是用来在视觉上说明屏幕上哪些控件是活跃的或者有相关的活动。例如bar button items和tab bar items默认使用tintColor。如果一个view没有显示地指定tintColor,它将继承父视图的tintColor,因此在整个视图层次结构中将有一个连锁反应。最简单的情况是你可以通过一行代码来给整个APP指定一个颜色主题...
分类:移动开发   时间:2014-08-24 00:23:49    阅读次数:430
011-iOS核心动画(Core Animation)
简介问题一:什么是核心动画(Core Animation)??Core Animation是非常强大的动画处理API,使用它能做出非常炫丽的动画效果,而且往往是事半功倍,使用它需要先添加QuartzCore.framework和引入对应的框架?CALayer中很多属性都可以通过CAAnimation...
分类:移动开发   时间:2014-08-23 18:59:31    阅读次数:214
IOS Core Animation Advanced Techniques的学习笔记(二)
[objc]view plaincopyprint?-(void)drawLayer:(CALayer*)layerinContext:(CGContextRef)ctx{CGFloatwidth=10.0f;//drawathickredcircleCGContextSetLineWidth(ct...
分类:移动开发   时间:2014-08-23 15:18:31    阅读次数:238
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!