passforios/pass/Views/FillPasswordTableViewCell.swift
2017-02-11 22:00:04 +08:00

28 lines
687 B
Swift

//
// FillPasswordTableViewCell.swift
// pass
//
// Created by Mingshen Sun on 11/2/2017.
// Copyright © 2017 Bob Sun. All rights reserved.
//
import UIKit
class FillPasswordTableViewCell: UITableViewCell {
@IBOutlet weak var contentTextField: UITextField!
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
}
@IBAction func generatePassword(_ sender: UIButton) {
contentTextField.text = Utils.randomString(length: 16)
}
}