我正在使用XLPagerTabStrip
,并且其中有两个子视图。在子视图中,我正在使用showMessage函数来打印错误消息的吐司,但该吐司未显示在视图中。
if ( debit_amount > availBal_Amount )
{
self.showMessage("NO_SUFFICIENT_BAL", type: .error, options: [.position(.bottom),.textNumberOfLines(0)])
}
这是showMessage函数:
open func showMessage(_ text: String,
type: GSMessageType,
options: [GSMessageOption]? = nil) {
GSMessage.showMessageAddedTo(text: text, type: type, options: options, inView: view, inViewController: self) }
仅在XLPagerTabStrip
视图showMessage()
中无效。
请帮助我解决问题。