UIDatePicker日期/时间选取器UIDatePicker 是一个控制器类,封装了 UIPickerView,但是他是UIControl的子类,专门用于接受日期、时间和持续时长的输入。日期选取器的各列会按照指定的风格进行自动配置,这样就让开发者不必关心如何配置表盘这样的底层操作。你也可以对其进...
分类:
其他好文 时间:
2015-05-30 12:09:51
阅读次数:
163
1、创建本地通知 UILocalNotification *local = [[UILocalNotification alloc] init]; 2、设置通知显示的时间 local.fireDate = [NSDate date]; 3、设置默认时区 local.timeZone = [...
分类:
移动开发 时间:
2015-05-30 10:41:05
阅读次数:
168
// NSString* timeStr = [self stringWithDate: [NSDate dateWithTimeIntervalSince1970:userGifGrouptEntity.lastGiftSentTime / 1000]]
- (NSString *)stringWithDate:(NSDate *)date {
if (date == n...
分类:
移动开发 时间:
2015-05-27 10:22:44
阅读次数:
158
1、创建本地通知
UILocalNotification *local = [[UILocalNotification alloc] init];
2、设置通知显示的时间
local.fireDate = [NSDate date];
3、设置默认时区
local.timeZone = [NSTimeZone defaultTimeZone];
4、设置提示内容
loc...
分类:
移动开发 时间:
2015-05-25 10:12:12
阅读次数:
162
NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"]; // 1 NSDate *date = [NSDate date]; ...
分类:
其他好文 时间:
2015-05-24 12:46:15
阅读次数:
95
一、NSDate和NSDateFormatter在iOS开发中,NSDate的使用场景很多,比如:聊天程序里:几分钟前,昨天,几天前的计算;网络请求中的时间戳(计算当前时间距 离1970年1月1日的秒数)二 、NSDate的使用三、NSTimeinterval
分类:
其他好文 时间:
2015-05-22 20:59:09
阅读次数:
162
一 插件简介:其github地址:https://github.com/li6185377/LKDBHelper-SQLite-ORM全面支持 NSArray,NSDictionary, ModelClass, NSNumber, NSString, NSDate, NSData, UIColor,...
分类:
移动开发 时间:
2015-05-22 16:32:31
阅读次数:
1226
系统自带的NSDate比较会比较深,比较到秒的量级,但是我们有时候想只比较日期,没有时间,看下面:- (BOOL)isTheSameDate:(NSDate *)date AnotherDate:(NSDate *)anotherDate{ if (date == nil || another...
分类:
其他好文 时间:
2015-05-21 21:50:27
阅读次数:
120
系统自带的NSDate比较会比较深,比较到秒的量级,但是我们有时候想只比较日期,没有时间,看下面:- (BOOL)isTheSameDate:(NSDate *)date AnotherDate:(NSDate *)anotherDate{ if (date == nil || another...
分类:
其他好文 时间:
2015-05-21 19:31:35
阅读次数:
106
1.[NSDate date]:表示当前时间2.[NSDate dateWithTimeInterval:5 sinceDate:date]//返回比date晚5秒点时间3.[date timeIntervalSince1970] //返回1970到date时间之间的秒数,返回NSTimeInter...
分类:
其他好文 时间:
2015-05-19 16:18:45
阅读次数:
127