add password title with image placeholder

This commit is contained in:
Bob Sun 2017-02-06 20:48:20 +08:00
parent 7eee62fa01
commit ceba7d271b
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4
10 changed files with 149 additions and 12 deletions

View 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
}
}