[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"calshow:"]];
如果要选择特定的某一天的话(默认是当前日期),calshow:后面加时间戳格式,也就是NSTimeInterval
注意这里计算时间戳调用的方法是-NSTimeInterval nowTimestamp = [[NSDate date] timeIntervalSinceReferenceDate];
timeIntervalSinceReferenceDate的参考时间是2000年1月1日,[NSDate date]是你希望跳到的日期。 原文链接:http://www.cocoachina.com/bbs/read.php?tid-460809.html
如果要选择特定的某一天的话(默认是当前日期),calshow:后面加时间戳格式,也就是NSTimeInterval
注意这里计算时间戳调用的方法是-NSTimeInterval nowTimestamp = [[NSDate date] timeIntervalSinceReferenceDate];
timeIntervalSinceReferenceDate的参考时间是2000年1月1日,[NSDate date]是你希望跳到的日期。 原文链接:http://www.cocoachina.com/bbs/read.php?tid-460809.html