gpt4 book ai didi

swift - 我想通过单击 UISegmented Control 来切换 UIView 但我的代码无法正常工作

转载 作者:行者123 更新时间:2023-11-30 10:43:53 29 4
gpt4 key购买 nike

我想通过单击分段控件来切换 UIView,但此代码不起作用。

@IBOutlet weak var flightTypeSegCont: UISegmentedControl!
@IBAction func flightType(_ sender: UISegmentedControl) {

if(flightTypeSegCont.selectedSegmentIndex == 0)
{
self.direcrCard.isHidden = false
self.ViaCardView.isHidden = true
}
else
{
self.direcrCard.isHidden = true
self.ViaCardView.isHidden = false
}
}

最佳答案

  1. 您是否检查过该函数是否在 XCode 调试器中被调用?如果没有,请将 IBAction 从 Storyboard/xib 连接到您的函数 - UISegmentedControl 的 valuechanged 标注。

  2. 如果正在调用但 View 未按您想要的方式隐藏,请检查它们是否具有父/子关系。要更详细地检查这一点,请转到 XCode->View Debugging->Capture View hierarchy 选项以查看运行时 UIView 布局。

关于swift - 我想通过单击 UISegmented Control 来切换 UIView 但我的代码无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56218719/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com