原文:Swift 语言概览 -自己在Xcode6 动手写1 Swift是什么? Swift是苹果于WWDC 2014发布的编程语言,这里引用The Swift Programming Language的原话: Swift is a new programming language for iOS and OS X apps that builds on the best of C and Objective-C, without the constraints of C compatibilit…
import UIKit class ViewController: UIViewController ,UITableViewDelegate, UITableViewDataSource { var tableView : UITableView? var items :NSMutableArray? var leftBtn:UIButton? override func viewDidLoad() { super.viewDidLoad() self.title = "I love Swi…