上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页

2015年8月3日

摘要: 统计信息 -c -- count time, calls, and errors for each syscall and report summary 输出结果到文件 -o 例如 strace -c -o test.log ./test 系统调用所花费的时间 -T 系统调用所发生的时间 ... 阅读全文
posted @ 2015-08-03 10:34 阮減显 阅读(97) 评论(0) 推荐(0) 编辑

2015年7月13日

摘要: @property (nonatomic, strong) NSTimer *timer;添加定时器self.timer = [NSTimer scheduledTimerWithTimeInterval:999.0 target:self selector:@selector(executeF... 阅读全文
posted @ 2015-07-13 15:16 阮減显 阅读(96) 评论(0) 推荐(0) 编辑
摘要: UIScrollView其实构建的就像一列很长的火车,每滑动一个屏幕,展示一节车厢。 //主屏幕高度#define kScreenHeight [UIScreen mainScreen].bounds.size.height //主屏幕宽度#define kScreenWidth [UI... 阅读全文
posted @ 2015-07-13 14:48 阮減显 阅读(117) 评论(0) 推荐(0) 编辑

2015年7月3日

摘要: create or replace function GetCardNoBySerialNo(v_sysacc varchar2,v_position number)return varchar2ISv_i number(10);v_j number(10);v_ret number(10);v... 阅读全文
posted @ 2015-07-03 11:10 阮減显 阅读(217) 评论(0) 推荐(0) 编辑

2015年6月16日

摘要: NSKeyedArchiver对象归档 首先要实现里面的两个代理方法initWithCoder,encodeWithCoder@property (nonatomic, copy) NSString *keyName;/* 将某个对象写入文件时候会调用 在这个方法中说清楚哪些... 阅读全文
posted @ 2015-06-16 17:31 阮減显 阅读(96) 评论(0) 推荐(0) 编辑
摘要: NSUserDefaults(偏好设置),一个APP对应一个偏好设置 保存/新增数据 //存储数据 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [defaults setObjec... 阅读全文
posted @ 2015-06-16 17:20 阮減显 阅读(85) 评论(0) 推荐(0) 编辑
摘要: - (IBAction)signOutAction:(id)sender { //初始化,StyleActionSheet是对话框的样式 UIAlertController *alert = [UIAlertController alertControllerWithTitle:... 阅读全文
posted @ 2015-06-16 16:59 阮減显 阅读(91) 评论(0) 推荐(0) 编辑
摘要: //为一个编辑框myField添加观察者,观察当编辑框文字改变时通知//方法textChange是通知发生是要做的事情 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textChange)... 阅读全文
posted @ 2015-06-16 16:36 阮減显 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 本文要实现view1跳到view2,view2又跳回view1。 首先要在视图中拉出一条连接view1和view2的线。 下面是在view1的控制器中实现,从view1跳到view2 //发生跳转前会执行这个方法- (void)prepareForSegue:(UIStoryboard... 阅读全文
posted @ 2015-06-16 15:43 阮減显 阅读(142) 评论(0) 推荐(0) 编辑

2015年6月5日

摘要: 1、AppDelegate.m老生常谈了,创建window,创建根视图rootViewController - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDiction... 阅读全文
posted @ 2015-06-05 16:15 阮減显 阅读(144) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页

导航