@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
//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 *view1=[[UIView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)]; view1.backgroundColor=[UIColor yellowColor]; view1.tag=1; ...
分类:
移动开发 时间:
2014-08-26 01:42:45
阅读次数:
223
最近在做涂鸦小程序的时候,发现几个内存问题。涂鸦Demo这个程序打开后是进入到相册选择图片,接着载入一个UIScrollView,然后在UIScrollView上添加一个UIImageView,再将选择图片设置为ImageView的Image。涂鸦的时候,将一个UIView加在UIImageView...
分类:
移动开发 时间:
2014-08-24 22:10:13
阅读次数:
353
//UIlabel
是ios中开发用来显示文字的控件,是UIview的子类,所以具有UIview的所有功能,还具有了可以显示文字的功能
//UILabel使用过程和UIview类似,也是分四步:
//1,创建对象
//2.配置属性
//3.添加到父视图
//释放所有权
//记住规律:不同的控件之间只是配置的属性的...
分类:
其他好文 时间:
2014-08-24 14:16:12
阅读次数:
235
在.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
自从iOS7,UIView有了一个新的属性tintColor,它是用来在视觉上说明屏幕上哪些控件是活跃的或者有相关的活动。例如bar button items和tab bar items默认使用tintColor。如果一个view没有显示地指定tintColor,它将继承父视图的tintColor,因此在整个视图层次结构中将有一个连锁反应。最简单的情况是你可以通过一行代码来给整个APP指定一个颜色主题...
分类:
移动开发 时间:
2014-08-24 00:23:49
阅读次数:
430
简介问题一:什么是核心动画(Core Animation)??Core Animation是非常强大的动画处理API,使用它能做出非常炫丽的动画效果,而且往往是事半功倍,使用它需要先添加QuartzCore.framework和引入对应的框架?CALayer中很多属性都可以通过CAAnimation...
分类:
移动开发 时间:
2014-08-23 18:59:31
阅读次数:
214
[objc]view plaincopyprint?-(void)drawLayer:(CALayer*)layerinContext:(CGContextRef)ctx{CGFloatwidth=10.0f;//drawathickredcircleCGContextSetLineWidth(ct...
分类:
移动开发 时间:
2014-08-23 15:18:31
阅读次数:
238