////////////////////////////////////////////////////////////////////////////////////////////最普通动画://开始动画[UIView
beginAnimations:nil context:nil];//设定动...
分类:
移动开发 时间:
2014-05-08 18:32:17
阅读次数:
469
1.类目类目就是为已存在的类添加新的方法。但是不能添加实例变量。比如系统的类,我们看不到他的.m文件,所以没有办法用直接添加方法的方式去实现。@interface
NSMutableArray (Sort) //为NSMutableArray类添加Sort方法,Sort就是类目名,做到见名知意-(v...
分类:
移动开发 时间:
2014-05-08 18:28:54
阅读次数:
447
iOS手势处理iOS手势有着如下几种:UITapGestureRecognizerUIPinchGestureRecognizerUIRotationGestureRecognizerUISwipeGestureRecognizerUIPanGestureRecognizerUILongPressG...
分类:
移动开发 时间:
2014-05-08 18:24:35
阅读次数:
556
// GuideViewController.h// Created by l.h on
14-5-6.#import @interface GuideViewController : UIViewController@end ////
GuideViewController.m// Cr...
分类:
移动开发 时间:
2014-05-08 18:17:49
阅读次数:
640
iPhone 屏幕适配判断 和
iOS系统版本判断if([[[UIDevicecurrentDevice]systemVersion]floatValue]>=7.0) { //
iOS7.0及以上版本系统适配}if([UIScreen mainScreen].bounds.size.heig...
分类:
移动开发 时间:
2014-05-08 18:10:07
阅读次数:
393
http://blog.csdn.net/l_ch_g/article/details/8566557
分类:
移动开发 时间:
2014-05-08 18:08:09
阅读次数:
285
在Xcode上进行objective-c开发,使用ios模拟器,出现springboard
无法启动应用程序(错误 -3)解决方式:关闭iOS模拟器,然后重新运行程序。
分类:
编程语言 时间:
2014-05-08 17:39:53
阅读次数:
4119
苹果官方app
demohttps://developer.apple.com/library/ios/navigation/#section=Resource%20Types&topic=Sample%20Code
分类:
移动开发 时间:
2014-05-08 15:23:08
阅读次数:
328
UIButton *button = [UIButton
buttonWithType:UIButtonTypeCustom];//button的类型 button.frame = CGRectMake(100,
100,90, 90);//button的frame button.backgro.....
分类:
移动开发 时间:
2014-05-08 15:21:38
阅读次数:
404
关于iOS开发的学习,打个比方就像把汽车分解:最底层的原料有塑料,钢铁再用这些底层的东西造出来发动机,座椅最后再加上写螺丝,胶水等,把汽车就拼起来了iOS基本都是英文的资料,也由于封闭,文档写的相当好。在遇到新框架的时候:弄明白框架的功能去文档里搜搜框架的ProgrammingGuide很有用要弄明...
分类:
移动开发 时间:
2014-05-08 15:08:36
阅读次数:
471