Fix UI issue
This commit is contained in:
parent
3054e8e6f4
commit
bead9eaf21
4 changed files with 31 additions and 23 deletions
|
|
@ -30,7 +30,7 @@ class AboutTableViewController: BasicStaticTableViewController {
|
|||
override func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
|
||||
if section == tableData.count - 1 {
|
||||
let view = UIView()
|
||||
let footerLabel = UILabel(frame: CGRect(x: 8, y: 15, width: tableView.frame.width, height: 60))
|
||||
let footerLabel = UILabel(frame: CGRect(x: -16, y: 16, width: tableView.frame.width, height: 60))
|
||||
footerLabel.numberOfLines = 0
|
||||
footerLabel.text = "PassForIos".localize() + " \(Bundle.main.releaseVersionNumber!) (\(Bundle.main.buildVersionNumber!))"
|
||||
footerLabel.font = UIFont.preferredFont(forTextStyle: .footnote)
|
||||
|
|
|
|||
|
|
@ -133,7 +133,7 @@ class PasswordNavigationViewController: UIViewController {
|
|||
configureTableViewDataSource(in: dir, isShowFolder: Defaults.isShowFolderOn)
|
||||
tableView.addGestureRecognizer(gestureRecognizer)
|
||||
tableView.delegate = self
|
||||
tableView.contentInset.top = 32
|
||||
tableView.contentInset.top = 8
|
||||
let atribbutedTitle = "LastSynced".localize() + ": \(PasswordStore.shared.lastSyncedTimeString)"
|
||||
refreshControl.attributedTitle = NSAttributedString(string: atribbutedTitle)
|
||||
tableView.refreshControl = refreshControl
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue