aboutsummaryrefslogtreecommitdiff
path: root/foray/ForayTableViewController.swift
diff options
context:
space:
mode:
authorNicholas Tay <nick@windblume.net>2022-03-18 14:04:12 +1100
committerNicholas Tay <nick@windblume.net>2022-03-18 14:04:51 +1100
commitf45d90ba504496e68d6a4cb2f7f887c011e9b19d (patch)
treea201aa4fa16a24d8538eb865bcb7fcfdafe27f2a /foray/ForayTableViewController.swift
parent16d2dc26ac31f2c5ec3dfd72228d2e7997459028 (diff)
downloadforayios-f45d90ba504496e68d6a4cb2f7f887c011e9b19d.tar.gz
forayios-f45d90ba504496e68d6a4cb2f7f887c011e9b19d.tar.bz2
forayios-f45d90ba504496e68d6a4cb2f7f887c011e9b19d.zip
Split table view cell into separate file
Cell no longer uses prototypes as registered in the Storyboard. Instead is a custom class inheriting the UITableViewCell and is manually registered by the VC. This is a first step towards reimplementing the prototype cells. Only has one label at the moment.
Diffstat (limited to 'foray/ForayTableViewController.swift')
-rw-r--r--foray/ForayTableViewController.swift27
1 files changed, 17 insertions, 10 deletions
diff --git a/foray/ForayTableViewController.swift b/foray/ForayTableViewController.swift
index ae8ff25..8f11285 100644
--- a/foray/ForayTableViewController.swift
+++ b/foray/ForayTableViewController.swift
@@ -55,6 +55,9 @@ class ForayTableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
+ // Register our custom cell
+ tableView.register(ForayNewTableViewCell.self, forCellReuseIdentifier: "ForayNewTableViewCell")
+
// Not sure if this is the right way to go about this...
let alert = UIAlertController(title: nil, message: "Grabbing data...", preferredStyle: .alert)
let loadingIndicator = UIActivityIndicatorView(frame: CGRect(x: 10, y: 5, width: 50, height: 50))
@@ -149,17 +152,21 @@ class ForayTableViewController: UITableViewController {
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let item = self.sections[indexPath.section].items[indexPath.row]
- let cell: ForayTableViewCell
- switch item.type {
- case .item:
- cell = tableView.dequeueReusableCell(withIdentifier: "ForayCell", for: indexPath) as! ForayTableViewCell
- cell.cellItemImage?.image = UIImage(named: item.id)
- case .quest:
- cell = tableView.dequeueReusableCell(withIdentifier: "ForayQuestCell", for: indexPath) as! ForayTableViewCell
- }
- cell.cellItemName?.text = item.name
- cell.cellItemSubtitle?.text = "ID: " + item.id
+// let cell: ForayTableViewCell
+// switch item.type {
+// case .item:
+// cell = tableView.dequeueReusableCell(withIdentifier: "ForayCell", for: indexPath) as! ForayTableViewCell
+// cell.cellItemImage?.image = UIImage(named: item.id)
+// case .quest:
+// cell = tableView.dequeueReusableCell(withIdentifier: "ForayQuestCell", for: indexPath) as! ForayTableViewCell
+// }
+//
+// cell.cellItemName?.text = item.name
+// cell.cellItemSubtitle?.text = "ID: " + item.id
+
+ let cell: ForayNewTableViewCell = tableView.dequeueReusableCell(withIdentifier: "ForayNewTableViewCell", for: indexPath) as! ForayNewTableViewCell
+ cell.setData(str: item.name)
return cell
}