Show category info after an password entry when show password folder is off

This commit is contained in:
Bob Sun 2017-03-10 23:07:56 -08:00
parent ff947f8e17
commit 3964ca64ed
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4
4 changed files with 120 additions and 17 deletions

View file

@ -0,0 +1,27 @@
//
// PasswordTableViewCell.swift
// pass
//
// Created by Mingshen Sun on 8/3/2017.
// Copyright © 2017 Bob Sun. All rights reserved.
//
import UIKit
class PasswordWithFolderTableViewCell: UITableViewCell {
@IBOutlet weak var passwordLabel: UILabel!
@IBOutlet weak var folderLabel: 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
}
}