首页 > 其他 > 详细

swift中函数使用

时间:2014-06-10 16:09:14      阅读:250      评论:0      收藏:0      [点我收藏+]

  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中函数使用

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!