add password title with image placeholder
This commit is contained in:
parent
7eee62fa01
commit
ceba7d271b
10 changed files with 149 additions and 12 deletions
26
pass/PasswordDetailTitleTableViewCell.swift
Normal file
26
pass/PasswordDetailTitleTableViewCell.swift
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
//
|
||||
// PasswordDetailTitleTableViewCell.swift
|
||||
// pass
|
||||
//
|
||||
// Created by Mingshen Sun on 6/2/2017.
|
||||
// Copyright © 2017 Bob Sun. All rights reserved.
|
||||
//
|
||||
|
||||
import UIKit
|
||||
|
||||
class PasswordDetailTitleTableViewCell: UITableViewCell {
|
||||
@IBOutlet weak var categoryLabel: UILabel!
|
||||
@IBOutlet weak var nameLabel: UILabel!
|
||||
@IBOutlet weak var passwordImageImageView: UIImageView!
|
||||
|
||||
override func awakeFromNib() {
|
||||
super.awakeFromNib()
|
||||
}
|
||||
|
||||
override func setSelected(_ selected: Bool, animated: Bool) {
|
||||
super.setSelected(selected, animated: animated)
|
||||
|
||||
// Configure the view for the selected state
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue