我正在使用来自https://github.com/erndev/EDSunriseSet的EDSunriseSet类
我有代码:
if(longitude == 0 && latitude == 0){
longitude = 51.50722; latitude = -0.12750;
}
EDSunriseSet *sunrise = [EDSunriseSet sunrisesetWithTimezone:[NSTimeZone localTimeZone] latitude:latitude longitude:longitude];
NSLog(@"With lat = %f and long = %F; sunrise is at: %@",latitude,longitude,sunrise.localSunset);
返回:
<NSDateComponents: 0x10a2743a0>
Hour: 0
Minute: 0
Second: 0
是我的问题还是因为脚本过时了?
所以我是相当愚蠢的,可能应该直接阅读源代码。
创建EDSunriseSet对象后,必须调用:
[sunrise calculateSunriseSunset:[NSDate date]];
或者直接输入:
[self calculateSunriseSunset:[NSDate date]];
放到init方法中,如果你只想处理今天的日期!