码迷,mamicode.com
首页 >  
搜索关键字:uiscreen    ( 254个结果
UITableview cell 的多选
利用NSMutableDictionary key值 来改变cell的状态 -(void)createUI{ table = [[UITableView alloc]initWithFrame:CGRectMake(0, 100, [UIScreen mainScreen].bounds.size. ...
分类:其他好文   时间:2016-07-11 19:08:06    阅读次数:111
常使用的宏定义归类(新添加的一些)
自己新添加的一些可用常用定义: //安全释放 #define RELEASE_SAFELY(__Pointer) do{[__Pointer release],__Pointer = nil;} while(0) // 屏幕的物理高度 #define ScreenHeight [UIScreen mainScreen].bounds.size.height // 屏幕的物理宽度...
分类:其他好文   时间:2016-07-10 19:13:16    阅读次数:829
适配iOS 7 和iOS 8屏幕尺寸宏定义
#define IS_IOS8_0 ([[[UIDevice currentDevice] systemVersion] floatValue] < 8.0) #define WIDTH [UIScreen mainScreen].bounds.size.width #define HEIGHT [ ...
分类:移动开发   时间:2016-06-30 18:17:10    阅读次数:156
核心动画
利用周末时间,边学边写。 一:核心动画 1.锚点作用:决定了控件旋转的点(旋转中)以自身左上角的(0,0) 2.position: position坐标和锚点坐标重合 以父控件的左上角为(0,0) 3.关于图片的裁剪 //获取当前的像素和点的比例 CGFloat scale = [UIScreen ...
分类:其他好文   时间:2016-06-29 20:17:13    阅读次数:164
iOS常用宏定义
#ifndef MacroDefinition_h #define MacroDefinition_h // 获取设备大小 //NavBar高度#define NavigationBar_HEIGHT 44 //获取屏幕 宽度、高度#define SCREEN_WIDTH ([UIScreen ma ...
分类:移动开发   时间:2016-06-20 18:40:59    阅读次数:247
iOS常用define宏定义
1. 屏幕宽高及常用尺寸 #define SCREEN_WIDTH ([UIScreen mainScreen].bounds.size.width)#define SCREEN_HEIGHT ([UIScreen mainScreen].bounds.size.height) #define Na ...
分类:移动开发   时间:2016-06-16 21:36:59    阅读次数:156
ios开发APP必须要了解的基本配置
1,配置开发版本AdHoc开发版,AppStore正式版2,oc的宏转swift//常量=》ObjectC宏letLoadingTip="加载中..."letiOS8:Float=8.0letScreenHeight=UIScreen.mainScreen().bounds.size.heightletPanWidth:CGFloat=1003,日志输出一,配置二,杭州APP开发定义方法funcFxLog(message:..
分类:移动开发   时间:2016-06-14 16:15:37    阅读次数:269
ios开发APP必须要了解的基本配置
1,配置开发版本 AdHoc开发版,AppStore正式版 2,oc的宏转swift //常量=》ObjectC宏 letLoadingTip="加载中..." letiOS8:Float=8.0 letScreenHeight =UIScreen.mainScreen().bounds.size. ...
分类:移动开发   时间:2016-06-14 16:08:35    阅读次数:233
懒加载的简单理解
懒加载是用到的时候再去加载比如 -(UITableView *)tableview{ if (!_tableview) { _tableview = [[UITableView alloc]initWithFrame:[UIScreen mainScreen].bounds]; self.table ...
分类:其他好文   时间:2016-06-03 19:03:51    阅读次数:164
APP1 window
self.window = UIWindow(frame:UIScreen.mainScreen().bounds) let rootVC : RootViewController = RootViewController() let navi = UINavigationController(ro ...
分类:移动开发   时间:2016-06-01 21:20:38    阅读次数:126
254条   上一页 1 ... 3 4 5 6 7 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!