如何在 swift iOS 中的按钮上方显示 EasyTipView
How to show EasyTipView above my Button in swift iOS
所以我的应用程序中有几个按钮,我想在上面显示工具提示。我正在使用 EasyTipView 模块,但它在我的按钮下方显示了工具提示,我希望在我的按钮上方显示工具提示。谁能帮忙,我是 iOS 的超级新手,我知道这是一项简单的任务,但我找不到解决方案。
https://github.com/teodorpatras/EasyTipView
我想我找到了 EasyTipView。它看起来像是在 https://github.com/teodorpatras/EasyTipView 的 github 上。是吗?
如果是,则 class 有一个 属性 arrowPosition。自述文件的“用法”部分说:
Usage
First you should customize the preferences:
var preferences = EasyTipView.Preferences()
// deleted other preferences settings that aren't relevant
preferences.drawing.arrowPosition = EasyTipView.ArrowPosition.top
在自述文件的下方,它列出了合法的箭头位置 .top
、.bottom
、.left
、.right
和 .any
。
如果您希望工具提示显示在视图下方,您应该尝试使用EasyTipView.ArrowPosition.top
。
所以我的应用程序中有几个按钮,我想在上面显示工具提示。我正在使用 EasyTipView 模块,但它在我的按钮下方显示了工具提示,我希望在我的按钮上方显示工具提示。谁能帮忙,我是 iOS 的超级新手,我知道这是一项简单的任务,但我找不到解决方案。 https://github.com/teodorpatras/EasyTipView
我想我找到了 EasyTipView。它看起来像是在 https://github.com/teodorpatras/EasyTipView 的 github 上。是吗?
如果是,则 class 有一个 属性 arrowPosition。自述文件的“用法”部分说:
Usage
First you should customize the preferences:
var preferences = EasyTipView.Preferences()
// deleted other preferences settings that aren't relevant
preferences.drawing.arrowPosition = EasyTipView.ArrowPosition.top
在自述文件的下方,它列出了合法的箭头位置 .top
、.bottom
、.left
、.right
和 .any
。
如果您希望工具提示显示在视图下方,您应该尝试使用EasyTipView.ArrowPosition.top
。