本文介绍: GitHub 上搜索这个库,然后下载zip文件,找到如下文件,拖到项目中就可以使用先看效果图1这个弹框显示位置可以设置在屏幕中心,底部,头部都可以,代码如下: kWindow.makeToast(“读取完成”, duration: 2, position: .center)先看效果图2代码如下://显示kWindow.makeToastActivity(.center)//隐藏kWindow.hideToastActivity()先看效果图3代码如下: kWindow.
GitHub 上搜索这个库,然后下载zip文件,找到如下文件,拖到项目中就可以使用
先看效果图1
这个弹框显示位置可以设置在屏幕中心,底部,头部都可以,代码如下:
kWindow.makeToast("读取完成", duration: 2, position: .center)
//显示
kWindow.makeToastActivity(.center)
//隐藏
kWindow.hideToastActivity()
kWindow.makeToast("读取完成", duration: 2, position: .center, title: "这是标题", image: UIImage.init(named: "tabbar_middle_add"))
self.view.makeToast("This is a piece of toast")
self.view.makeToast("This is a piece of toast", duration: 3.0, position: .top)
//接受点击事件
self.view.makeToast("This is a piece of toast", duration: 2.0, point: CGPoint(x: 110.0, y: 110.0), title: "Toast Title", image: UIImage(named: "toast.png")) { didTap in
if didTap {
print("completion from tap")
} else {
print("completion without tap")
}
}
// 添加自定义视图
self.view.showToast(myView)
自定义样式
/// makeToast 方法 样式style属性都有一个默认值,由单例类ToastManager管理
makeToast(_ message: String?, duration: TimeInterval = ToastManager.shared.duration, point: CGPoint, title: String?, image: UIImage?, style: ToastStyle = ToastManager.shared.style, completion: ((_ didTap: Bool) -> Void)?)
// create a new style
var style = ToastStyle()
// this is just one of many style options
style.messageColor = .blue
/// 单独设置弹框样式
// present the toast with the new style
self.view.makeToast("This is a piece of toast", duration: 3.0, position: .bottom, style: style)
/// 全局配置统一样式
// or perhaps you want to use this style for all toasts going forward?
// just set the shared style and there's no need to provide the style again
ToastManager.shared.style = style
self.view.makeToast("This is a piece of toast") // now uses the shared style
/// toast弹框点击隐藏
// toggle "tap to dismiss" functionality
ToastManager.shared.isTapToDismissEnabled = true
/// 多个弹框是否重叠
// toggle queueing behavior
ToastManager.shared.isQueueEnabled = true
END
原文地址:https://blog.csdn.net/weixin_43259805/article/details/123278264
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_16275.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。