首页 > 代码库 > 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)
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。