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.
如何以分钟而不是秒显示currentPlaybackTime属性?MPMediaPLayback
currentPlaybackTime
MPMediaPLayback
大概,你可以把它除以60?
显示此字符串:
[NSString stringWithFormat:@"%d:%02d", (seconds / 60), (seconds % 60))];
这不就是它的全部吗?