Fix extension point image name

This commit is contained in:
Maurice Parker
2020-10-30 17:10:24 -05:00
parent 6f42628428
commit 0b4fb4250a
4 changed files with 4 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ class EnableExtensionPointViewController: UITableViewController {
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
if section == 0 {
let headerView = tableView.dequeueReusableHeaderFooterView(withIdentifier: "SectionHeader") as! ImageHeaderView
headerView.imageView.image = extensionPointType?.templateImage
headerView.imageView.image = extensionPointType?.image
return headerView
} else {
return super.tableView(tableView, viewForHeaderInSection: section)