alpha-wallet-ios
alpha-wallet-ios copied to clipboard
UIKitFactory suggestion
Suggest we use a class to build the UI elements
class UiKitFactory: NSObject { ... func textField() -> UITextField { let textField = UITextField() textField.translateAutoresizingMask = false textField.backgroundColor = R.color.dove() ... return textField } ... }