Swift
文章平均质量分 69
ly艺煌
每天学一点,记一点,就会一点
展开
-
Swift-协议和扩展
import Foundation //创建协议 protocol SimpleProtocol { var value:String{get} //定义属性时,最少要有get或set方法 func toString()->String //返回String的值 mutating func update() //无返回值,mutating原创 2014-06-19 10:59:27 · 511 阅读 · 0 评论 -
Swift-枚举和结构体
import Foundation //枚举的定义 enum CompassPoint { case North,South,East,West func desc() { switch self { case .North: println("当前指向为北") case .South:原创 2014-06-19 12:07:55 · 464 阅读 · 0 评论