如何获取Int值的所有数字

时间:2016-11-22 08:03:43

标签: swift swift3

是否有可能在Swift中获取Embedded Content Contains Swift Code变量的所有数字而不将此变量转换为"Always Embed Swift Standard Libraries = YES"

我现在这样做的小例子:

Int

1 个答案:

答案 0 :(得分:4)

这样的东西?

var number = 123456
var array = [Int]()

while number > 0 {
    array.append(number % 10)
    number = number / 10
}
array.reverse()