作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的 swift 项目中使用 SexyTooltip。我有这段代码:
func showTooltip(prefix: Int?){
var description = ""
description = setProductIconTitle(prefix: prefix)
let myAttribute = [ NSAttributedStringKey.foregroundColor: UIColor.black, NSAttributedStringKey.backgroundColor: .white]
let greetingsText = NSAttributedString(string: description, attributes: myAttribute)
let greetingsTooltip = SexyTooltip(attributedString: greetingsText, sizedTo: view, withPadding: UIEdgeInsetsMake(10, 5, 10, 5), andMargin: UIEdgeInsetsMake(20, 20, 20, 20))
greetingsTooltip?.dismiss(inTimeInterval: 2)
view.addSubview(greetingsTooltip!)
greetingsTooltip?.present(from: iconView1, in: view, withMargin: 10, animated: true)
}
这段代码工作正常。我想一次只看到一个提示/工具提示。单击另一个按钮后 - 所有以前的提示/工具提示都必须隐藏。
怎么做?
最佳答案
试试这个
func showTooltip(prefix: Int?){
for toolView in view.subviews {
if toolView is SexyTooltip {
toolView.removeFromSuperview()
}
}
var description = ""
description = setProductIconTitle(prefix: prefix)
let myAttribute = [ NSAttributedStringKey.foregroundColor: UIColor.black, NSAttributedStringKey.backgroundColor: .white]
let greetingsText = NSAttributedString(string: description, attributes: myAttribute)
let greetingsTooltip = SexyTooltip(attributedString: greetingsText, sizedTo: view, withPadding: UIEdgeInsetsMake(10, 5, 10, 5), andMargin: UIEdgeInsetsMake(20, 20, 20, 20))
greetingsTooltip?.dismiss(inTimeInterval: 2)
view.addSubview(greetingsTooltip!)
greetingsTooltip?.present(from: iconView1, in: view, withMargin: 10, animated: true)
}
关于ios - 如何在 swift 4 中隐藏 SexyTooltip?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51040384/
根据文档here我要使用 typedef 为 sexyTooltip 指定箭头方向数组。 他们建议: typedef NS_ENUM(NSUInteger, SexyTooltipArrowDirec
我正在尝试在我的 swift 项目中使用 SexyTooltip。我有这段代码: func showTooltip(prefix: Int?){ var description = "
我是一名优秀的程序员,十分优秀!