码迷,mamicode.com
首页 > 其他好文 > 详细

swift中函数使用

时间:2014-06-10 19:32:10      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:class   ext   使用   string   cti   res   

  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)

    }

swift中函数使用,布布扣,bubuko.com

swift中函数使用

标签:class   ext   使用   string   cti   res   

原文地址:http://www.cnblogs.com/dugulong/p/3779648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!