-
Notifications
You must be signed in to change notification settings - Fork 0
/
VineFeedDatasource.swift
46 lines (37 loc) · 1.53 KB
/
VineFeedDatasource.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//
// VineFeedDatasource.swift
// comblie
//
// Created by Cal on 11/16/15.
// Copyright © 2015 Comblie. All rights reserved.
//
import UIKit
class VineFeedDatasource: NSObject, UITableViewDataSource {
var tableView : UITableView
var items : NSMutableArray
var isProfile : Bool
init(tableView : UITableView, isProfile : Bool) {
self.isProfile = isProfile
self.items = ["a","a"]
self.tableView = tableView
self.tableView.registerNib(UINib(nibName: "VineFeedCell", bundle: nil), forCellReuseIdentifier: "VineFeed")
self.tableView.registerNib(UINib(nibName: "VineHeaderCell", bundle: nil), forCellReuseIdentifier: "VineHeader")
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.items.count
}
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var currentCell : UITableViewCell!
// Configure the cell...
if (isProfile && indexPath.row == 0) {
currentCell = tableView.dequeueReusableCellWithIdentifier("VineHeader", forIndexPath: indexPath)
} else {
currentCell = tableView.dequeueReusableCellWithIdentifier("VineFeed", forIndexPath: indexPath) as! VineFeedCellController
}
return currentCell
}
}