回答編集履歴
1
編集
test
CHANGED
@@ -29,3 +29,11 @@
|
|
29
29
|
[参考リンク:How to format percent in Swift](https://onmyway133.github.io/blog/How-to-format-percent-in-Swift/)
|
30
30
|
|
31
31
|
[参考リンク:NumberFormatter.Style](https://developer.apple.com/documentation/foundation/numberformatter/style)
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
**補足**
|
36
|
+
|
37
|
+
NumberFormatterを利用すると、自動的に位の移動もされる点はご注意ください。
|
38
|
+
|
39
|
+
「let A = 4.258」の”4.258”という値を、NumberFormatter(parcent)で変換すると「425.8%」となってしまうかと思います。
|