From 670619d22b6f31a0523d33c5705b6dc871ef421f Mon Sep 17 00:00:00 2001 From: Bob Sun Date: Sat, 4 Feb 2017 15:00:34 +0800 Subject: [PATCH] change refresh hints --- pass/PasswordsViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pass/PasswordsViewController.swift b/pass/PasswordsViewController.swift index 707667a..7e06005 100644 --- a/pass/PasswordsViewController.swift +++ b/pass/PasswordsViewController.swift @@ -19,7 +19,7 @@ class PasswordsViewController: UIViewController, UITableViewDataSource, UITableV lazy var refreshControl: UIRefreshControl = { let refreshControl = UIRefreshControl() refreshControl.addTarget(self, action: #selector(PasswordsViewController.handleRefresh(_:)), for: UIControlEvents.valueChanged) - refreshControl.attributedTitle = NSAttributedString(string: "Sync Passwords") + refreshControl.attributedTitle = NSAttributedString(string: "Sync Password Store") return refreshControl }() let searchBarView = UIView(frame: CGRect(x: 0, y: 64, width: UIScreen.main.bounds.width, height: 44))