利用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
#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
#ifndef MacroDefinition_h #define MacroDefinition_h // 获取设备大小 //NavBar高度#define NavigationBar_HEIGHT 44 //获取屏幕 宽度、高度#define SCREEN_WIDTH ([UIScreen ma ...
分类:
移动开发 时间:
2016-06-20 18:40:59
阅读次数:
247
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
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
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
self.window = UIWindow(frame:UIScreen.mainScreen().bounds) let rootVC : RootViewController = RootViewController() let navi = UINavigationController(ro ...
分类:
移动开发 时间:
2016-06-01 21:20:38
阅读次数:
126