Prettify UI

This commit is contained in:
Bob Sun 2017-04-07 17:21:48 -07:00
parent 4119e1a9de
commit 099d8f2d53
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4
5 changed files with 58 additions and 51 deletions

View file

@ -15,7 +15,9 @@ class RawPasswordViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
navigationItem.title = "Raw"
navigationItem.title = password?.name
rawPasswordTextView.textContainer.lineFragmentPadding = 0
rawPasswordTextView.textContainerInset = .zero
rawPasswordTextView.text = password?.plainText
}
}