gpt4 book ai didi

ios - 使用双击的投票系统

转载 作者:行者123 更新时间:2023-11-30 14:10:26 24 4
gpt4 key购买 nike

我正在尝试在用户双击图像时实现投票系统。当用户双击图像时,投票计数会加一并保存以供解析。在我的牢房里我有

    override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
//postsLabel.textAlignment = NSTextAlignment.Center
bottomBlurView.backgroundColor = UIColor(red: 0, green: 0.698, blue: 0.792, alpha: 0.75)
votesLabel!.textAlignment = NSTextAlignment.Right
let gesture = UITapGestureRecognizer(target: self, action: Selector("onDoubleTap:"))
gesture.numberOfTapsRequired = 2
contentView.addGestureRecognizer(gesture)

heartIcon?.hidden = true
//profileImageView.layer.cornerRadius = profileImageView.frame.height / 2

}


func onDoubleTap (sender: AnyObject) {
if self.complition != nil
{
self.complition!()
}
heartIcon?.hidden = false
heartIcon?.alpha = 1.0

UIView.animateWithDuration(1.0, delay:1.0, options:nil, animations: {
self.heartIcon?.alpha = 0
}, completion: {
(value:Bool) in
self.heartIcon?.hidden = true
})
}

}

在我的 Collection View Controller 中我有

func onDoubleTap (indexPath:NSIndexPath)
{
let cell = self.collectionView.cellForItemAtIndexPath(indexPath) as! NewCollectionViewCell

let object = self.votes[indexPath.row]

if let likes = object["votes"] as? Int
{
object["votes"] = likes + 1
object.saveInBackgroundWithBlock{ (success:Bool,error:NSError?) -> Void in
println("Data saved")

}
cell.votesLabel?.text = "\(likes + 1)"
}
else
{
object["votes"] = 1
object.saveInBackgroundWithBlock{ (success:Bool,error:NSError?) -> Void in
println("Data saved")
}
cell.votesLabel?.text = "1"
}

}

但是这不会添加一个并且不会保存以进行解析。任何帮助表示赞赏。谢谢

最佳答案

您应该将第一个 onDoubleTap 放置在 collectionView 的 cellForItemAtIndexPath 中并在那里进行配置。

关于ios - 使用双击的投票系统,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31837216/

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