swift函数返回多个值

Posted 小课桌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift函数返回多个值相关的知识,希望对你有一定的参考价值。

swift的函数可以使用元组的形式返回多个值。

class func getMaxMinWeight(arr:[YMDateRecord]) -> (max:Float,min:Float){
        var maxV:Float = 0
        var minV:Float = 0
        
        for info in arr{
            if info.weight >= maxV{
                maxV = info.temperature
            }
            if info.weight <= minV{
                minV = info.temperature
            }
        }
        
        return (maxV,minV)
    }

使用:

let result = YMDateRecordDAO.getMaxMinTemperature(arr: arr)
minVal = CGFloat(result.min)
maxVal = CGFloat(result.max)

 

以上是关于swift函数返回多个值的主要内容,如果未能解决你的问题,请参考以下文章

swift函数返回多个值

Swift初见Swift函数

Parse.com - 从云代码函数返回多个值

Swift(08)- 函数

快速从函数中返回多个值

Swift基础语法