摘要:
统计信息 -c -- count time, calls, and errors for each syscall and report summary 输出结果到文件 -o 例如 strace -c -o test.log ./test 系统调用所花费的时间 -T 系统调用所发生的时间 ... 阅读全文
摘要:
@property (nonatomic, strong) NSTimer *timer;添加定时器self.timer = [NSTimer scheduledTimerWithTimeInterval:999.0 target:self selector:@selector(executeF... 阅读全文
摘要:
UIScrollView其实构建的就像一列很长的火车,每滑动一个屏幕,展示一节车厢。 //主屏幕高度#define kScreenHeight [UIScreen mainScreen].bounds.size.height //主屏幕宽度#define kScreenWidth [UI... 阅读全文
摘要:
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... 阅读全文
摘要:
NSKeyedArchiver对象归档 首先要实现里面的两个代理方法initWithCoder,encodeWithCoder@property (nonatomic, copy) NSString *keyName;/* 将某个对象写入文件时候会调用 在这个方法中说清楚哪些... 阅读全文
摘要:
NSUserDefaults(偏好设置),一个APP对应一个偏好设置 保存/新增数据 //存储数据 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [defaults setObjec... 阅读全文
摘要:
- (IBAction)signOutAction:(id)sender { //初始化,StyleActionSheet是对话框的样式 UIAlertController *alert = [UIAlertController alertControllerWithTitle:... 阅读全文
摘要:
//为一个编辑框myField添加观察者,观察当编辑框文字改变时通知//方法textChange是通知发生是要做的事情 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textChange)... 阅读全文
摘要:
本文要实现view1跳到view2,view2又跳回view1。 首先要在视图中拉出一条连接view1和view2的线。 下面是在view1的控制器中实现,从view1跳到view2 //发生跳转前会执行这个方法- (void)prepareForSegue:(UIStoryboard... 阅读全文
摘要:
1、AppDelegate.m老生常谈了,创建window,创建根视图rootViewController - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDiction... 阅读全文