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.
我如何将 5.5 转换为 5 英尺 6 英寸。我正在使用目标 c 和 xcode 在 xcode 中执行此操作。
任何帮助表示赞赏
我认为没有任何本机功能可以做到这一点。无论如何,这将起作用
CGFloat decimal = 12.5; NSInteger feet = (NSInteger)decimal; CGFloat fraction = decimal - feet; NSInteger inches = (NSInteger)(12.0 * fraction); NSLog(@"%f feet %f inches", feet,inches);