Initial commit

This commit is contained in:
Rodrigo Pedroso 2019-06-26 23:05:40 -04:00
commit 02f81bdfe6
16 changed files with 1046 additions and 0 deletions

View file

@ -0,0 +1,29 @@
//
// RepoCell.swift
// repo-browser
//
// Created by Rodrigo Pedroso on 2019-06-26.
// Copyright © 2019 Rodrigo Pedroso Leite Pinto. All rights reserved.
//
import UIKit
class RepoCell: UITableViewCell {
@IBOutlet var imgThumbnail: UIImageView!
@IBOutlet var lblTitle: UILabel!
@IBOutlet var lblDescription: UILabel!
@IBOutlet var lblRepoType: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}