Swift编程无法转换为float

时间:2015-07-07 03:53:33

标签: swift

附件是我的代码,它基本上是两个文本框一起添加,但我不知道如何处理浮点变量。任何帮助表示赞赏

@IBOutlet weak var first: UITextField!
@IBOutlet weak var second: UITextField!
@IBOutlet weak var total: UILabel!

@IBAction func add(sender: AnyObject) {

   total.text = "\(first.text.toInt()!+second.text.toInt()!)"

1 个答案:

答案 0 :(得分:1)

你可以尝试

total.text = "\(firstFloatValue + secondFloatValue)

然后,

    var uuid = require('node-uuid'); 

    module.exports = {

        adapter: 'somePostgresqlServer',
        autoPK: false,
        attributes: {
            id: {
                primaryKey : true,
                type       : 'string',
                defaultsTo : function (){
                    return uuid.v4(); 
                },
                unique     : true,
                index      : true
            },

            username: {
                type     : 'string',
                required : true,
                unique   : true
            }
        }
    };

Convert String to float in Apple's Swift

中提到的众多技巧中的任何一种