-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
136 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
Cineaste/ViewController/SearchMovies/SearchTokenCell.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// SearchTokenCell.swift | ||
// Cineaste App | ||
// | ||
// Created by Felizia Bernutz on 19.01.20. | ||
// Copyright © 2020 spacepandas.de. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
class SearchTokenCell: UITableViewCell { | ||
static let identifier = "SearchTokenCell" | ||
|
||
@IBOutlet weak var tokenIcon: UIImageView! | ||
@IBOutlet weak var title: UILabel! | ||
|
||
func configure() { | ||
tokenIcon.image = UIImage.searchIcon | ||
title.text = "Horror" | ||
} | ||
|
||
} |