-
Notifications
You must be signed in to change notification settings - Fork 0
/
InstagramFeedDatasource.swift
45 lines (37 loc) · 1.48 KB
/
InstagramFeedDatasource.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
//
// InstagramFeedDatasource.swift
// comblie
//
// Created by Cal on 11/16/15.
// Copyright © 2015 Comblie. All rights reserved.
//
import UIKit
class InstagramFeedDatasource: NSObject, UITableViewDataSource {
var tableView : UITableView
var items : NSMutableArray
init(tableView : UITableView) {
self.items = ["a"]
self.tableView = tableView
self.tableView.registerNib(UINib(nibName: "InstagramFeedCell", bundle: nil), forCellReuseIdentifier: "InstagramFeed")
}
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!
if (indexPath.row == 1) {
let cell = tableView.dequeueReusableCellWithIdentifier("InstagramFeed", forIndexPath: indexPath) as! InstagramFeedCellController
cell.playButton.alpha = CGFloat(0)
currentCell = cell
} else {
let cell = tableView.dequeueReusableCellWithIdentifier("InstagramFeed", forIndexPath: indexPath) as! InstagramFeedCellController
currentCell = cell
}
// Configure the cell...
return currentCell
}
}