1234567891011121314151617181920212223 |
- //
- // UIBarButtonItem+item.swift
- // SolarStationSwift
- //
- // Created by weclouds on 2018/8/9.
- // Copyright © 2018年 weclouds. All rights reserved.
- //
- import Foundation
- import UIKit
- extension UIBarButtonItem{
- class func createBarbuttonItem(image:String,highImage:String,target:Any?,action:Selector) ->UIBarButtonItem{
- let item = UIButton()
- item.setImage(UIImage(named: image), for: .normal)
- item.setImage(UIImage(named: highImage), for: .highlighted)
- //自适应大小
- item.sizeToFit()
- item.addTarget(target, action: action, for: UIControl.Event.touchUpInside)
- return UIBarButtonItem(customView: item)
- }
- }
|