#pragma mark 时间戳转成时间的字符串 zoneStr时间戳的字符串- (NSString *)timestampIntoTime:(NSString *)zoneStr{ //时间戳的字符串转成日期的字符串 long long index = [zoneStr longLongValue];&nb
分类:
移动开发 时间:
2018-07-09 12:29:54
阅读次数:
1115
iOS 时间相关类 NSDate - 表示一个绝对的时间点。 NSCalendar - 代表一个特定的日历,例如公历或者希伯来日历。它提供了一系列基于日期的计算,并且可以让你在"NSDate"和"NSDateComponents"对象之间进行转换。 NSDateComponents - 允许你获取一 ...
分类:
移动开发 时间:
2018-05-12 03:17:48
阅读次数:
273
Swift NSDate().timeIntervalSince1970 Go import ( "time" ) int32(time.Now().Unix()) Java // pure java (int) (System.currentTimeMillis() / 1000) // joda... ...
分类:
其他好文 时间:
2018-05-04 19:32:38
阅读次数:
1495
本地推送: UILocalNotification *notification=[[UILocalNotification alloc] init]; if (notification!=nil) { NSDate *now=[NSDate new]; notification.fireDate=[ ...
分类:
移动开发 时间:
2018-03-31 12:07:17
阅读次数:
237
一个NSThread对象就代表一条线程 下面是NSThread开启线程的方法 NSThread 创建线程的生命周期 当线程中的任务执行完毕后 线程被释放掉 可以继承NSThread创建一个新类 重写dealloc方法来验证 线程的状态 当线程处于就绪状态时线程会被移到可调度线程池里面(CPU只调度此 ...
分类:
移动开发 时间:
2018-03-06 00:49:10
阅读次数:
309
写在前面给大家推荐一个不错的站点 www.joblai.com 本文章由央广传媒开发部 冯宝瑞整理。哈哈 http://www.cocoachina.com/bbs/read.php?tid=149564 文一 我从苹果文档中得知,一般的应用在进入后台的时候能够获取一定时间来执行相关任务,也就是说能 ...
分类:
移动开发 时间:
2018-01-12 19:40:13
阅读次数:
384
1,延时执行(不可重复) [objc] view plain copy /** ** delay 不可重复 **/ - (void)timerMethodA { [self performSelector:@selector(methodAEvent) withObject:nil afterDel ...
分类:
移动开发 时间:
2017-12-26 14:28:16
阅读次数:
232
var oldFormatDate = function (date) { var y = date.getFullYear(); var m = date.getMonth() + 1; m = m < 10 ? '0' + m : m; var d = date.getDate()-7; d = ...
分类:
其他好文 时间:
2017-12-15 19:36:47
阅读次数:
138
//获取当前系统时间的时间戳 #pragma mark - 获取当前时间的 时间戳 +(NSInteger)getNowTimestamp{ NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDate ...
分类:
移动开发 时间:
2017-11-08 11:58:25
阅读次数:
235
#import <Foundation/Foundation.h>@interface SFAutoDictionary : NSObject@property (nonatomic, strong)NSString *string;@property (nonatomic, strong)NSNu ...
分类:
其他好文 时间:
2017-10-13 22:35:14
阅读次数:
173