NSDate常用方法 /*=============================NSDate日期类的使用=============================*/ // 获取当前时间,获得的时0市区的时间跟北京时间相差8小时 NSDate *currentDate ...
分类:
移动开发 时间:
2015-12-01 08:27:20
阅读次数:
206
//创建时间 NSInteger numTime = [dict[@"createTime"][@"time"] longLongValue]/1000; NSDate *nowTime = [NSDate dateWithTimeIntervalSince1970:numTim...
分类:
移动开发 时间:
2015-11-27 14:33:40
阅读次数:
155
- (NSString *)timeStringWithDate:(NSDate *)date{ NSDateFormatter *dateForm = [[NSDateFormatter alloc] init]; dateForm.dateFormat = @"yyy...
分类:
其他好文 时间:
2015-11-25 13:20:31
阅读次数:
163
1。获得当前的系统时间和日期//获得系统时间 NSDate*senddate=[NSDatedate];NSDateFormatter*dateformatter=[[NSDateFormatteralloc]init];[dateformattersetDateFormat:@"HH:mm"];N...
分类:
其他好文 时间:
2015-11-21 15:48:50
阅读次数:
126
使用过的代码,直接贴上 1 UILocalNotification *notification = [[UILocalNotification alloc] init]; 2 if (notification!=nil) { 3 NSDate *now = [NSDate new]; 4...
分类:
移动开发 时间:
2015-11-20 21:30:54
阅读次数:
230
//获取当前日期 NSDate* date = [NSDate date]; NSDateFormatter* dateFormat = [[NSDateFormatter alloc] init]; [dat...
分类:
其他好文 时间:
2015-11-18 10:31:29
阅读次数:
134
我开发的很多项目中都有用到计算时间差的地方,这里把我封装的一个小方法分享给需要的朋友,当然主要是初学者们,哈哈。 主要使用了NSDate、NSCalender、NSComponents三个类,这三个类里面的方法很多,大家都可以浏览一下,特别需要注意方法后面的版本限制,注意使用不要出现版本适配问...
分类:
移动开发 时间:
2015-11-17 12:42:39
阅读次数:
170
NSThread相对于gcd和nsoperation来说偏向于底层,有时候会用到它的一些方法,比如长时间等待一个线程,或者频繁使用的时候 [NSThread sleepForTimeInterval:2];//让线程睡两秒 [NSThread sleepUntilDate:[NSDate d...
分类:
其他好文 时间:
2015-11-16 14:06:48
阅读次数:
114
//倒计时
@implementation?ViewController
-?(void)viewDidLoad?{
????[super?viewDidLoad];
????[NSTimer?scheduledTimerWithTimeInterval:1.0f?target:self?selector:@selector(jishi)?userI...
分类:
其他好文 时间:
2015-11-13 19:31:49
阅读次数:
266
对自己的几点要求:1,独立制作,学习分析需求、设计界面;2,需求分析->概要设计->详细界面、功能设计->开发->测试->上架;3,实用性;4,尽量用自己没学过的知识点;这个APP耗时比较长的几个点:1,微信接入;2,NSDate和相关的类;3,AppStore审核相关ICON 和 截图功能;4,国...
分类:
移动开发 时间:
2015-11-13 10:26:20
阅读次数:
249