開始用Swift開發(fā)iOS 10 - 6 創(chuàng)建簡單的Table Based App


table view應該是iOS應用中最常用的UI element饶氏。最好的例子就是iPhone自帶的一些應用,如電話有勾,郵件疹启,設置等。TED蔼卡,Google+喊崖,Airbnb,微信等等都是很好例子雇逞。

創(chuàng)建一個項目

  • 項目名稱為SimpleTable荤懂,模板為"Single View application"

設計UI

  • 選中Main.storyboard,從Object library中拖動Table View進入視圖
  • 改變Table View的大小至整個view喝峦,修改屬性Prototype Cells為1
  • 選中Table View Cell势誊,修改StyleBasicIdentifierCell谣蠢。table view cell的標準類型有 basic粟耻、right detail查近、left detail 和 subtitle,當然還有定制類型custom挤忙。
  • 選中Table View霜威,設置四個spacing約束,上下左右的距離都設置為0

為UITableView添加兩個協(xié)議

  • Object library中的每一UI component都是對應一個class册烈,如 Table View就是對應UITableView戈泼。可以通過點擊并懸停在UI component上查看對應的class和介紹赏僧。
  • ViewController.swift文件的UIViewController后大猛,添加代碼, UITableViewDataSource, UITableViewDelegate,表示ViewController類實現(xiàn)了UITableViewDataSource淀零,UITableViewDelegate兩個協(xié)議挽绩。
    出現(xiàn)紅色感嘆號,這是xcode的問題提示驾中,點擊參看問題描述:

Type 'ViewController' does not conform to protocol
'UITableViewDataSource'

問題描述為ViewController不符合協(xié)議UITableViewDataSource唉堪。通過command+點擊 (最新的xcode9變成了command+option+點擊)到UITableViewDataSource中看看你:

public protocol UITableViewDataSource : NSObjectProtocol {

    
    @available(iOS 2.0, *)
    public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int

    
    // Row display. Implementers should *always* try to reuse cells by setting each cell's reuseIdentifier and querying for available reusable cells with dequeueReusableCellWithIdentifier:
    // Cell gets various attributes set automatically based on table (separators) and data source (accessory views, editing controls)
    
    @available(iOS 2.0, *)
    public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell

    
    @available(iOS 2.0, *)
    optional public func numberOfSections(in tableView: UITableView) -> Int // Default is 1 if not implemented

    
    @available(iOS 2.0, *)
    optional public func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? // fixed font style. use custom view (UILabel) if you want something different

    @available(iOS 2.0, *)
    optional public func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String?

    
    // Editing
    
    // Individual rows can opt out of having the -editing property set for them. If not implemented, all rows are assumed to be editable.
    @available(iOS 2.0, *)
    optional public func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool

 ...
  • UITableViewDataSource協(xié)議中定義了很多方法,除了前兩個方法沒有optional其它都有肩民,有的表示這個方法不一定要實現(xiàn)唠亚,沒有的就一定要實現(xiàn),把這個兩個方法實現(xiàn)了持痰,問題提示就會消失灶搜。這兩個方法從名字和返回值類型也大概能知道做了什么:

    • public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int 一個section有幾行,也就是一個section有幾個UITableViewCell共啃, section就是一組UITableViewCell的意思占调,Table View可以定義多個section,默認是一個移剪。
    • public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 返回每一行的 UITableViewCell
  • ViewController.swift中定義一個變量restaurantNames究珊,類型是數(shù)組,表示一系列餐館的名字纵苛。

var restaurantNames = ["Cafe Deadend", "Homei", "Teakha", "Cafe Loisl", "PetiteOyster", "For Kee Restaurant", "Po's Atelier", "Bourke Street Bakery", "Haigh'sChocolate", "Palomino Espresso", "Upstate", "Traif", "Graham Avenue Meats AndDeli", "Waffle & Wolf", "Five Leaves", "Cafe Lore", "Confessional","Barrafina", "Donostia", "Royal Oak", "CASK Pub and Kitchen"]
  • 定義UITableViewDataSource的兩個方法:
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        // 1
        return restaurantNames.count
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) ->
        UITableViewCell {
        // 2
        let cellIdentifier = "Cell"
        let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier,
                                                     for: indexPath)
        // 3
        cell.textLabel?.text = restaurantNames[indexPath.row]
        return cell
            
    }
  • 1 餐館的數(shù)目就是section的行數(shù)
  • 2 "Cell"與之前定義的UITableViewCellIdentifier屬性是對應的剿涮。dequeueReusableCell方法是產(chǎn)生一個UITableViewCell
  • 3 UITableViewCell中有可算屬性textLabel攻人,其實就是一個UILabel取试,由于是可選屬性,調(diào)用時也用可選鏈式調(diào)用cell.textLabel?.text

連接 DataSource 和 Delegate

運行app怀吻,沒有數(shù)據(jù)顯示瞬浓。盡管上面已經(jīng)在代碼中讓ViewController繼承了UITableViewDataSource, UITableViewDelegate,但storyboard并不知道蓬坡。

  • 在document outline中選擇Table View猿棉,使用control-dragView Controller磅叛,在彈出框中選擇dataSource。同樣的方法選擇delegate
  • 確認連接是否成功萨赁。選中Table View弊琴,在connetion檢查器中查看;或者直接在document outline中右擊Table View
  • 運行app


添加圖片到Table View

  • simpletable-image1.zip下載圖片杖爽,解壓后一起拖到asset catalog
  • ViewController.swifttableView(_:cellForRowAtIndexPath:)方法的return cell前添加代碼cell.imageView?.image = UIImage(named: "restaurant")敲董。使每個UITableViewCell的image都是一樣的。

隱藏狀態(tài)欄

頂部狀態(tài)來和table view 數(shù)據(jù)重疊了慰安,只要在ViewController加一段代碼就可以:

override var prefersStatusBarHidden: Bool {
    return true
}

prefersStatusBarHidden是父類UIViewController中的屬性腋寨,所以要加 override,表示重寫了化焕。

不同的Cell對應不同的圖片

  • simpletable-image2.zip下載圖片精置,解壓后一起拖到asset catalog
  • 修改ViewController.swifttableView(_:cellForRowAtIndexPath:)為:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) ->
        UITableViewCell {
        let cellIdentifier = "Cell"
        let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier,
                                                     for: indexPath)
        // Configure the cell...
        let restaurantName = restaurantNames[indexPath.row]
        cell.textLabel?.text = restaurantName
        // 1
        let imageName = restaurantName.lowercased().replacingOccurrences(of: " ", with: "")
        if let image = UIImage(named: imageName) {
            cell.imageView?.image = image
        } else {
            cell.imageView?.image = UIImage(named: "restaurant")
        }
        
        return cell
            
    }
  • 1 把菜館名字字符串先修改成小寫,然后去空格
  • 最終結(jié)果

代碼

Beginning-iOS-Programming-with-Swift

說明

此文是學習appcode網(wǎng)站出的一本書 《Beginning iOS 10 Programming with Swift》 的一篇記錄

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末锣杂,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子番宁,更是在濱河造成了極大的恐慌元莫,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,542評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蝶押,死亡現(xiàn)場離奇詭異踱蠢,居然都是意外死亡,警方通過查閱死者的電腦和手機棋电,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,596評論 3 385
  • 文/潘曉璐 我一進店門茎截,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人赶盔,你說我怎么就攤上這事企锌。” “怎么了于未?”我有些...
    開封第一講書人閱讀 158,021評論 0 348
  • 文/不壞的土叔 我叫張陵撕攒,是天一觀的道長。 經(jīng)常有香客問我烘浦,道長抖坪,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,682評論 1 284
  • 正文 為了忘掉前任闷叉,我火速辦了婚禮擦俐,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘握侧。我一直安慰自己蚯瞧,他們只是感情好嘿期,可當我...
    茶點故事閱讀 65,792評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著状知,像睡著了一般秽五。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上饥悴,一...
    開封第一講書人閱讀 49,985評論 1 291
  • 那天坦喘,我揣著相機與錄音,去河邊找鬼西设。 笑死瓣铣,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的贷揽。 我是一名探鬼主播棠笑,決...
    沈念sama閱讀 39,107評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼禽绪!你這毒婦竟也來了蓖救?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,845評論 0 268
  • 序言:老撾萬榮一對情侶失蹤印屁,失蹤者是張志新(化名)和其女友劉穎循捺,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體雄人,經(jīng)...
    沈念sama閱讀 44,299評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡从橘,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,612評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了础钠。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片恰力。...
    茶點故事閱讀 38,747評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖旗吁,靈堂內(nèi)的尸體忽然破棺而出踩萎,到底是詐尸還是另有隱情,我是刑警寧澤很钓,帶...
    沈念sama閱讀 34,441評論 4 333
  • 正文 年R本政府宣布驻民,位于F島的核電站,受9級特大地震影響履怯,放射性物質(zhì)發(fā)生泄漏回还。R本人自食惡果不足惜殿遂,卻給世界環(huán)境...
    茶點故事閱讀 40,072評論 3 317
  • 文/蒙蒙 一假栓、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧总棵,春花似錦、人聲如沸蝗柔。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,828評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽癣丧。三九已至槽畔,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間胁编,已是汗流浹背厢钧。 一陣腳步聲響...
    開封第一講書人閱讀 32,069評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留嬉橙,地道東北人早直。 一個月前我還...
    沈念sama閱讀 46,545評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像市框,于是被迫代替她去往敵國和親霞扬。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,658評論 2 350

推薦閱讀更多精彩內(nèi)容