gpt4 book ai didi

swift - 通过 UITabBarController 移动到选定索引后 UIView 为零

转载 作者:行者123 更新时间:2023-11-30 13:40:00 26 4
gpt4 key购买 nike

我在音乐播放应用程序中使用UITabBarController。我的 tabBarController 中有 2 个索引,索引 0 (tableViewController) 和索引 1 (nowPlayingViewController)。索引 0 包含一个显示歌曲名称的 UITableViewController,索引 1 包含一个 UIViewController,它应该显示正在播放的页面,包括当前播放歌曲和艺术家的标签。

当用户点击 tableViewController 上的单元格(歌曲名称)时,我会做两件事,首先,我将所选歌曲的标题提供给第三个类,即 ControllerClass 然后我将标签栏移至索引 1,这是正在播放的页面...

 //this is inside tableViewController class
let _ControllerClass = ControllerClass()
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
_ControllerClass.nowPlayingSongInfo(trackTitles[indexPath.row])
self.tabBarController?.selectedIndex = 1
}

到目前为止一切顺利。 nowPlayingViewControllerControllerClass 的委托(delegate)。当ControllerClass收到新的歌曲标题时,它会调用一个委托(delegate)方法,该方法应该在nowPlayingViewController上设置UILabel的文本。这是 ControllerClass 中的方法,它以字符串形式回调新标题。

  func newNowPlayingSongTitle(songTitle: String){
delegate?.configureLabels(songTitle)
}

这也很好用,一切都很好。我在 nowPlayingViewController 上成功收到回调,我知道这是因为我能够在收到回调时打印歌曲标题,就像这样......

    func configureLabels(songTitle: String){
print("song title is \(songTitle)")
//successfully prints the correct song title
}

但是,我的问题是这样...我需要的不仅仅是打印出新的歌曲标题,我还需要将我的 nowPlayingViewController 上的 UILabel 的文本属性设置为等于我的新歌曲标题。在回调中接收。但是,当我尝试这个时...

   func configureLabels(songTitle: String){
print("song title is \(songTitle)")
self.songLabel.text = songTitle
//crashes on the line above error = "unexpectedly found nil while unwrapping an optional value"
}

由于解包时意外发现 nil...,应用程序崩溃了...。显然 UILabel 为零,尽管我知道我已经正确设置了它,因为我可以从其他地方设置它的文本属性。

我也尝试过这个,

func configureLabels(songTitle: String){
let view = UIView(frame: CGRectMake(100, 100, 100, 100))
self.view.addSubview(view)
}

查看整个 View 本身是否为零,然后它再次因相同的错误而崩溃,因此 self.view 确实为零。

这是怎么回事?我可以从其他地方设置此 View 中的标签和图像,但是在 UILabel 上方所示的位置中,整个 View 本身为零。如何解决这个问题?任何建议都会很好,谢谢。

注意:我尝试过 self.loadView() 但这也没有帮助

最佳答案

我的问题是我的委托(delegate)被设置为 nowPlayingViewController 的不同实例,而不是当前位于 tabBarController 中的实例。要解决此问题,请不要执行

让 np = nowPlayingViewController()

ControllerClass.delegate = np

我做到了

let np = self.tabBarController?.viewControllers![1] as! nowPlayingViewController

然后ControllerClass.delegate = np

对于 UITabBarController 来说这是必要的,因为嵌入到 tabBarController 中的 View 会加载一次,然后保持加载状态,因此我需要在 nowPlayingViewController 上为 nowPlayingViewController 的正确实例设置 UILabels,即嵌入到 tabBarController 中的一个,因为该实例是正在显示的实例。当然希望其他人发现这很有用!

关于swift - 通过 UITabBarController 移动到选定索引后 UIView 为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35688711/

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