首页 > 代码库 > swift中函数使用

swift中函数使用

  1,普通函数定义及使用   

 func myFunction(message:String="message",repeat:Int = 1){//可以设置函数默认参数值(very nice)

        println("text is \(message)   time is :\(repeat)")

    }

    func buttonPress(sender:UIButton){

            self.myFunction()

            self.myFunction(message:"hello world")

            self.myFunction(repeat:5)

            self.myFunction(message:"hello",repeat:10)

    }