From 7bd39bc7128d5eea6dfcbb826569f92571df259b Mon Sep 17 00:00:00 2001 From: Ole Begemann Date: Wed, 27 Jul 2016 17:20:41 +0200 Subject: [PATCH] Call super in viewDidLoad --- .../Contents.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/MyPlayground.playground/Pages/Generic Table View Controller.xcplaygroundpage/Contents.swift b/MyPlayground.playground/Pages/Generic Table View Controller.xcplaygroundpage/Contents.swift index 82ecc98..1f1b067 100644 --- a/MyPlayground.playground/Pages/Generic Table View Controller.xcplaygroundpage/Contents.swift +++ b/MyPlayground.playground/Pages/Generic Table View Controller.xcplaygroundpage/Contents.swift @@ -29,6 +29,7 @@ final class ItemsViewController: UITableViewControl } override func viewDidLoad() { + super.viewDidLoad() tableView.registerClass(Cell.self, forCellReuseIdentifier: reuseIdentifier) }