From 8e580e3dad079f064b19d80ad00ddcd915d0a7ac Mon Sep 17 00:00:00 2001 From: Bob Sun Date: Fri, 24 Feb 2017 23:54:17 +0800 Subject: [PATCH] make variable name simple --- pass/Helpers/Globals.swift | 4 ++-- pass/Views/LabelTableViewCell.swift | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pass/Helpers/Globals.swift b/pass/Helpers/Globals.swift index 24f1916..0363c94 100644 --- a/pass/Helpers/Globals.swift +++ b/pass/Helpers/Globals.swift @@ -21,8 +21,8 @@ class Globals { static var passcodeConfiguration = PasscodeLockConfiguration() static let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as! String - static let myRedColor = UIColor(red:1.00, green:0.23, blue:0.19, alpha:1.0) - static let myBlueColor = UIColor(red:0.00, green:0.48, blue:1.00, alpha:1.0) + static let red = UIColor(red:1.00, green:0.23, blue:0.19, alpha:1.0) + static let blue = UIColor(red:0.00, green:0.48, blue:1.00, alpha:1.0) private init() { } } diff --git a/pass/Views/LabelTableViewCell.swift b/pass/Views/LabelTableViewCell.swift index 3a0fd6b..fcf3833 100644 --- a/pass/Views/LabelTableViewCell.swift +++ b/pass/Views/LabelTableViewCell.swift @@ -76,9 +76,9 @@ class LabelTableViewCell: UITableViewCell { // draw all punctuation characters in the password into blue for (index, element) in plainPassword.unicodeScalars.enumerated() { if NSCharacterSet.decimalDigits.contains(element) { - attributePassword.addAttribute(NSForegroundColorAttributeName, value: Globals.myRedColor, range: NSRange(location: index, length: 1)) + attributePassword.addAttribute(NSForegroundColorAttributeName, value: Globals.red, range: NSRange(location: index, length: 1)) } else if NSCharacterSet.punctuationCharacters.contains(element) { - attributePassword.addAttribute(NSForegroundColorAttributeName, value: Globals.myBlueColor, range: NSRange(location: index, length: 1)) + attributePassword.addAttribute(NSForegroundColorAttributeName, value: Globals.blue, range: NSRange(location: index, length: 1)) } } // set contentLabel