我前几天将我的iPhone应用程序提交给苹果,他们说我在过程中使用了一个私有API“-descriptionWithCalendarFormat:timeZone:locale”,这意味着我需要找到一个替代当前代码的方法:
NSString *lastSyncDate = [store.lastSync descriptionWithCalendarFormat:@"%Y-%m-%d %H:%M:%S" timeZone:[NSTimeZone timeZoneForSecondsFromGMT:0] locale:nil];
这个代码的最佳代码是什么?
答案 0 :(得分:1)
根据自己的喜好创建和配置NSDateFormatter
,然后拨打-[NSDateFormatter stringFromDate:]
。