标签: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)
}
标签:class ext 使用 string cti res
原文地址:http://www.cnblogs.com/dugulong/p/3779648.html