use TableView to show password detail

This commit is contained in:
Bob Sun 2017-02-02 21:04:31 +08:00
parent 35a9c84b63
commit 8f23f609a7
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4
8 changed files with 156 additions and 60 deletions

View file

@ -0,0 +1,24 @@
//
// LabelTableViewCell.swift
// pass
//
// Created by Mingshen Sun on 2/2/2017.
// Copyright © 2017 Bob Sun. All rights reserved.
//
import UIKit
class LabelTableViewCell: UITableViewCell {
@IBOutlet weak var contentLabel: UILabel!
@IBOutlet weak var titleLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
}
}