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インチに変換するにはどうすればよいですか。私はこれをObjectivecと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);