Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以将 nstimeinterval 类型值转换为 xcode 中的字符串类型?
提前感谢乔伊
NSTimeInterval 是一个double. 你可以使用
double
return [NSString stringWithFormat:@"%g", timeInterval];
对于更复杂的格式(例如“2 分 40 秒”),请编写您自己的函数。