segue到详细的tableview控制器

时间:2017-05-15 21:07:23

标签: swift uitableview firebase firebase-realtime-database segue

我将数据从一个视图控制器传递到另一个视图控制器。第一个视图控制器有一个collectionviewcell,我正在调整的控制器有一个tableviewcell。当我点击同时点击用户的集合视图的单元格时,我想要进入一个详细的视图控制器,其中包含用户制作的所有帖子的列表(存储在firebase中)

这是我到目前为止: - 这是我的控制器与collectionviewcell

class WelcomeViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate{

  var posts = NSMutableArray()
  var databaseRef = FIRDatabase.database().reference()
  var loggedInUser = FIRAuth.auth()?.currentUser

override func viewDidLoad() {
        super.viewDidLoad()

loadData()

}

  func loadData(){
        if (FIRAuth.auth()?.currentUser) != nil{
     FIRDatabase.database().reference().child("books").observeSingleEvent(of: .value, with: { (snapshot:FIRDataSnapshot) in


                let loggedInUserData = snapshot
                if let postsDictionary = snapshot .value as? [String: AnyObject] {
                    for post in postsDictionary {
                        self.posts.add(post.value)
                    }
                    self.CollectionView.reloadData()


                }})}
    }

 func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {

    }



    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        if segue.identifier == "details" {


   if segue.identifier == "UsersProfile" {

            if let indexPath = sender as? IndexPath{
                let vc = segue.destination as! UsersProfileViewController
                let post = self.posts[indexPath.row] as! [String: AnyObject]
                let posted = self.posts[indexPath.row] as! [NSMutableArray: AnyObject]
                let username = post["username"] as? String
                let userpicuid = post["uid"] as? String
                let userpostuid = post["uid"] as? NSMutableArray
                vc.username = username
                vc.userpicuid = userpicuid
                vc.posts = posts
                print(indexPath.row)
            }
        }}

现在当我点击单元格时,我会进入详细的视图控制器,它会显示我数据库中所有用户发布的所有帖子,我知道这是因为在我的segue中我写了vc.posts = posts。我是swift的新手,我不知道如何设置它以便当我单击一个单元格时(也就是当我点击一个用户时),然后一个详细的tableviewcontroller显示我的所有帖子,只有该用户已经< / p>

同样,我正在尝试仅显示由个人用户上传的帖子

2 个答案:

答案 0 :(得分:1)

概述:

  • 集合视图显示帖子列表。
  • 每个单元代表一个帖子。
  • 每个单元格都有一个按钮,当按下该按钮时会显示用户图像,该应用程序会进入UsersProfileViewController
  • UsersProfileViewController包含一个属性posts,代表用户发布的帖子。

问题:

  • 如何设置UsersProfileViewController,使其仅显示所选用户发布的帖子?

的方法:

  • 每个单元格都会出列并重复使用。
  • 点击按钮时,需要知道按钮对应的索引路径。
  • 一旦知道包含按钮的单元格的indexPath,我们就可以确定与之关联的用户。
  • 知道用户后,根据所选用户过滤帖子。

步骤:

  1. 使用indexPath作为属性
  2. 创建按钮的子类
  3. 在单元格中使用该自定义按钮
  4. cellForItemAtIndexPath中设置按钮indexPath
  5. cellForItemAtIndexPath中设置按钮的目标
  6. 按下按钮时,确定相应的用户名并将其存储为selectedUserName(查看控制器属性)。
  7. 基于prepareForSegue
  8. selectedUserName过滤帖子

    示例代码:

    class CellButton : UIButton {
    
        var indexPath : IndexPath?
    }
    
    
    override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellIdentifier, for: indexPath) as! CustomCollectionViewCell
    
        let post = posts[indexPath.row] as? [String : Any]
    
        cell.backgroundColor = .red
        cell.titleLabel.text = post?["title"] as? String
        cell.button.setTitle(post?["username"] as? String, for: .normal)
        cell.button.addTarget(self, action: #selector(tappedOnUserButton(button:)),
                              for: .touchUpInside)
        cell.button.indexPath = indexPath
    
        return cell
    }
    
    @objc private func tappedOnUserButton(button: CellButton) {
    
        guard let indexPath = button.indexPath else {
            return
        }
    
        print("button pressed - \(indexPath)")
    
        let post = posts[indexPath.row] as? [String : Any]
    
        selectedUserName = post?["username"] as? String
    }
    
    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    
        if segue.identifier == "UsersProfile" {
    
    
            //Filter posts based on username
            //Assumption: posts contains all the posts.
            let postsForUser = posts.filter {
    
                guard let post = $0 as? [String : Any] else {
                    return false
                }
    
                return post["username"] as? String == selectedUserName
            }
    
            print("postForUser = \(postsForUser)")
    
        }
    }
    

    首选方法:

    • 创建名为struct的{​​{1}}(而不是使用字典,编码时容易出错)
    • 创建一个名为User的{​​{1}},Post会有一个名为User的属性来映射用户 - https://itunes.apple.com/us/book/the-swift-programming-language-swift-3-1/id881256329?mt=11
    • 请了解struct,每种语言都有一些您可以利用的功能。
    • 除非您100%确定它包含非零值
    • ,否则不要强制解包变量
    • 尽可能使用本机类型(例如使用Swift Array而不是Post
    • 请清楚解释您的问题,以便其他人不必花时间努力理解。 (准确,清晰并隔离问题,并使用markdown进行格式化)

答案 1 :(得分:0)

你可以在storyboard中将segue从collectionViewController设置为tableViewController,然后给它一个标识符(非常重要)。

在collectionViewController中,覆盖prepareForSegue

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    if let vc = segue.destinationViewController as? YourTableViewControllerClassName {
        // assign data you want to pass here
    }
}

然后在collectionView:didSelectItemAt方法中,请致电performSegueWithIdentifier("yourID", sender: self)

希望这有帮助!