pod 'CLToast'git
public enum CLToastPosition { case top case middle case bottom } public class CLToast: NSObject { // 默認純文本、展現在window上、2秒消失、中間位置 // onView: 能夠指定顯示在指定的view上 // success=nil,展現純文本,success=false展現錯誤的圖片, success=true展現成功的圖片 // position: 展現的位置 public static func cl_show(msg: String, onView:UIView? = nil,success: Bool? = nil,duration:CGFloat? = nil, position: CLToastPosition? = .middle) { _ = CLToastUtil.init(msg: msg, onView: onView, success: success, duration: duration, position: position) } }
// 默認展現在window上,默認2秒消失 CLToast.cl_show(msg: "展現純文本,在window上默認2s") // 展現在指定view上默認2秒,可指定時間 CLToast.cl_show(msg: "展現純文本,在指定view上。指定3s", onView: self.view, duration: 3)
CLToast.cl_show(msg: "展現有圖片的成功消息,默認在window上,默認2s", success: true) CLToast.cl_show(msg: "展現有圖片的失敗消息,在指定view上,指定3s",onView: self.view, success: false,duration: 3)
CLToastManager.share.successImage = UIImage(named: "message_success") CLToast.cl_show(msg: "測試更換成功圖片", success: true)
CLToastManager.share.successImage = UIImage(named: "message_success") CLToastManager.share.textFont = UIFont.boldSystemFont(ofSize: 20) CLToastManager.share.textColor = UIColor.red CLToastManager.share.bgColor = UIColor(white: 0, alpha: 0.5) CLToastManager.share.cornerRadius = 8 CLToast.cl_show(msg: "修改toast的屬性,修改toast的屬性", success: true)
1.因爲CLToastManager 是一個單例對象,當設置響應的屬性後,那整個項目的toast就會保持整個屬性值。若是項目toast較爲統一,那麼只要在appdelegate中設置一次便可,若是隻是想偶爾改變一次toast的屬性值,那麼再改變以後,調用reset方法便可重置。github