gpt4 book ai didi

ios - 函数应该将用户添加到 Firebase 中其他 friend 节点的列表中,但它返回 nil

转载 作者:行者123 更新时间:2023-11-29 05:59:12 24 4
gpt4 key购买 nike

我有一个名为 CloseFriendsController 的模态视图(在 Storyboard中制作),其中有一个按钮,该按钮应将当前用户添加到 Firebase 中标题为 closeFriends 的列表中,然后关闭模式看法。我在 CloseFriendsController 中创建了该函数,并在点击按钮时调用它:

var buttonFunc: (() -> (Void))!

@IBAction func addToCloseFriends(_ sender: UIButton) {
buttonFunc()
self.presentingViewController?.dismiss(animated: true, completion: nil)
print("Added to Close Friends!")
}

func setFunction(_ function: @escaping () -> Void) {
self.buttonFunc = function
}

这是 CloseFriendsController(“是的,我很沮丧!”按钮链接到 addToCloseFriends 函数):

Screenshot from Storyboard

该函数在要显示当前用户的单元格的cellForItemAt indexPath中设置:

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let closeFriends = collectionView.dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath)

let closeFriendsController = CloseFriendsController()
closeFriendsController.setFunction {
let id = CloseFriendsSystem.system.friendList[indexPath.row].uid
CloseFriendsSystem.system.addCurrentUserToFriendsCloseFriendsLists(id)
print("currentUser added to Friends' Close Friends list!!")

}

return closeFriends
}

buttonFunc() 被注释掉时,会打印 print("Added to Close Friends!") 语句,但 buttonFunc()行导致应用程序崩溃并出现警告:

Thread 1: Fatal error: Unexpectedly found nil while unwrapping an Optional value

我之前已经创建了一个函数,调用它并以相同的方式设置它多次。但是,在这些情况下,调用该函数的按钮位于 cellForItemAt indexPath 引用的单元格内。因此,我想我需要找到一种不同的方式来调用indexPath?但我不知道该怎么做。

我尝试创建一个带有函数的委托(delegate),该函数会导致在设置它的同一 Controller 中创建 buttonFunc 函数。然而,另一个 Controller 中的函数从未被调用。

我真的被困在这里了,所以任何帮助都会很棒!!

最佳答案

解决方案:

您需要更改 CollectionView 委托(delegate)和数据源代码,如下所示:

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let closeFriends = collectionView.dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath)
return closeFriends
}

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
// initialize closeFriendsController
let closeFriendsController = CloseFriendsController() // change this line as you need
closeFriendsController.id = CloseFriendsSystem.system.friendList[indexPath.row].uid
// present closeFriendsController
self.present(closeFriendsController, animated: true, completion: nil) // change this line if you are presenting differently
}

在您的 CloseFriendsController 中:

删除 var buttonFunc: (() -> (Void))!

var id: String!

@IBAction func addToCloseFriends(_ sender: UIButton) {
guard let id = self.id else { return }
CloseFriendsSystem.system.addCurrentUserToFriendsCloseFriendsLists(id)
self.presentingViewController?.dismiss(animated: true, completion: nil)
print("Added to Close Friends!")
}

此外,删除 func setFunction(_ function: @escaping () -> Void) {

self.buttonFunc = 函数

<罢工>}

关于ios - 函数应该将用户添加到 Firebase 中其他 friend 节点的列表中,但它返回 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54856326/

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