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.
iOSでユーザーに表示する必要のある温度値がありますが、その特殊文字を華氏で表示するにはどうすればよいですか。つまり、華氏37度です。
それをコピーしてコードに貼り付けるだけです。
double temperature = 37.2f; NSString *temperatureString = [NSString stringWithFormat:@"%.1f°F", temperature]; NSLog(@"%@", temperatureString);