Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions JsonChallenge/ImageTableViewCell.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
//
// ImageTableViewCell.swift
// JsonChallenge
//
// Created by Rayan Taj on 21/12/2021.
//

import UIKit

class ImageTableViewCell: UITableViewCell {

@IBOutlet var imageViewData: UIImageView!
@IBOutlet var email: 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
}

}
Loading