-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
begin implementing master view controller
- Loading branch information
Showing
34 changed files
with
4,282 additions
and
320 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// | ||
// CarTableViewCell.swift | ||
// CarsTest | ||
// | ||
// Created by Yurii Kolesnykov on 10.08.17. | ||
// Copyright © 2017 Yurii Kolesnykov. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
fileprivate let kReuseID = "CarTableViewCell" | ||
fileprivate let kCellHeight = 80 as CGFloat | ||
|
||
class CarTableViewCell: UITableViewCell { | ||
|
||
@IBOutlet weak var nameLabel: UILabel! | ||
@IBOutlet weak var picImageView: UIImageView! | ||
|
||
class var reuseID: String { | ||
return kReuseID | ||
} | ||
|
||
class var CellHeight: CGFloat { | ||
return kCellHeight | ||
} | ||
|
||
override func awakeFromNib() { | ||
super.awakeFromNib() | ||
// Initialization code | ||
} | ||
} |
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
Oops, something went wrong.