12 lines
204 B
Swift
12 lines
204 B
Swift
|
|
//
|
||
|
|
// PasswordGeneratorUISwitch.swift
|
||
|
|
//
|
||
|
|
|
||
|
|
import UIKit
|
||
|
|
|
||
|
|
class PasswordGeneratorUISwitch: UISwitch {
|
||
|
|
override func draw(_: CGRect) {
|
||
|
|
transform = CGAffineTransform(scaleX: 0.8, y: 0.8)
|
||
|
|
}
|
||
|
|
}
|