暂无描述

UISwitchExt.swift 244B

    // // UISwitchExt.swift // ExtensionKit // // Created by FFIB on 2017/9/14. // Copyright © 2017年 FFIB. All rights reserved. // import UIKit extension UISwitch { public func toggle() { setOn(!isOn, animated: true) } }