摘要: 最近在做一个电商的APP,话说今年电商很火啊。 用到了本地通知,特此整理一下添加一个本地通知到系统中,代码如下:// 初始化本地通知对象UILocalNotification *notification = [[UILocalNotification alloc] init];if (notific... 阅读全文
posted @ 2015-06-08 18:56 Qiang zi 阅读(200) 评论(0) 推荐(0)
摘要: 例1、 从服务器段获取到的字符串转化为时间如:转化1416882712000NSString *time =1416882712000;//服务器上的时间字符串NSInteger num = [time integerValue]/1000;(重点)NSDateFormatter *formatte... 阅读全文
posted @ 2015-06-08 18:35 Qiang zi 阅读(552) 评论(0) 推荐(0)
摘要: [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerFireMethod:) userInfo:nil repeats:YES];- (void)timerFireMethod:(NSTime... 阅读全文
posted @ 2015-06-08 18:31 Qiang zi 阅读(201) 评论(0) 推荐(0)