繁体   English   中英

使用Parse在Swift中实现相似功能

[英]Implementing like and unlike functionality in Swift using Parse

我正在尝试使用Swift 2.0,Storyboard和Parse在我的iOS应用中实现“喜欢/不喜欢”功能,用户可以在其中喜欢/不喜欢其他用户或他们自己创建的帖子-就像Instagram,Facebook和其他社交应用一样。

我在情节提要中将一个按钮连接到一个名为likeButtonIBOutlet和一个名为likeButtonTappedIBAction

我相信cellForRowAtIndexPath方法也可以正确实现此功能。

我认为我对以下代码的注释中需要发生的事情有正确的想法,但是,我不知道如何检查特定帖子是否被喜欢。 如何检查帖子是否被喜欢,以便可以切换likeButton图像,递增/递减likeCount以及添加/删除当前用户与该用户喜欢的帖子之间的关系。

另外,我是否对标准的相似/不相似功能采用“正确”(传统)方法? 我希望听到您的反馈。 感谢您的时间和帮助!

class TimelineFeedViewController: PFQueryTableViewController {
    var userLike = PFUser.currentUser()?.relationForKey("likes")

    @IBAction func likeButtonTapped(sender: UIButton) {
        // The following code has errors - for example, `object` is an unresolved 
        // identifier (it's supposed to be a PFObject that holds a post at a specific 
        // indexPath)
        // Also, I cant access the likeButton for some reason. Only when I do
        // cell.likeButton in `cellForRowAtIndexPath`.
        // If the button is liked already (it's filled)
        // Toggle likeButton image to UNfilled version
        // "if likeButton isLiked == true" below is pseudocode of what I am trying to do
        if likeButton isLiked == true {
            let image = UIImage(named: "likeButtonUnfilled")
            cell.likeButton.setImage (image, forState: UIControlState)

            // Decrement the likeCount
            object!.decrementKey("count")

            // Remove the relation bet user and post
            self.userLike?.removeObject(object!)
        } else {
            // the button is NOT liked already (it's not filled)
            // toggle the image to the filled version
            let image = UIImage(named: "likeButton")
            cell.likeButton.setImage (image, forState: UIControlState)

            // Increment the likeCount
            object!.incrementKey("count")

            // Add the relation bet. user and post
            self.userLike?.addObject(object!)
        }

        object!.saveIngBackground()
        PFUser.currentUser()?.saveInBackground()

        self.tableView.reloadData()
    }
}

假设您拥有自定义UITableViewCell类并已从Parse中获取数据,而不是在UITableView数据源方法中

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCellWithIdentifier("skillsCell", forIndexPath: indexPath) as! YOURTableViewCell
    //Check If item is liked
    if (isLiked) {

      //Set image for like on button
      }
      else {
          //Set image for unlike on button
      }
    cell.YourButton.tag = indexPath.row // This will assign tag to each button in tableView

    return cell
}

比在YourViewController中添加UIButton动作

@IBAction func testButtonAction(sender: UIButton) {

    print(sender.tag)

    let cell = testTableView.cellForRowAtIndexPath(NSIndexPath(forRow: sender.tag, inSection: 0)) as! TestTableViewCell

    if cell.likeButton.titleLabel?.text == "Cell \(sender.tag)" { //Your logic here. Check If button's image has "Liked Image than change Image to UnLiked Image"
        cell.likeButton.text = "\(sender.tag)"
    }
    else {
        cell.likeButton.text = "Cell \(sender.tag)"
    } 
}

这将实现UITableView中的按钮的“赞/不喜欢”。 还要确保您相应地更新了Parse中的Class。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM