iPhone开发常用api接口集合

 

1. 获取当前时间戳

 

  CFTimeInterval  time= CFAbsoluteTimeGetCurrent();

 

  以秒为单位,返回从2001年1月1日 到当前时间的间隔。

 

p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Menlo; color: #3f217c} span.s1 {color: #7340a3} span.s2 {color: #000000}

 

 

2.设置timer定时器回调

 

NSInteger time=10;

 

[NSTimer scheduledTimerWithTimeInterval:time  target:self  selector:@selector(CALLBackFunc) userInfo:nil repeats:NO];

 

 


你可能感兴趣的:(c,timer,api,iPhone)