在swift中的tableviewCell中实现like按钮

时间:2015-08-12 23:44:16

标签: ios swift uitableview social-media-like

我正在尝试在每个tableview单元格中创建一个类似的按钮。按下时,按钮将变为“不同”。我能够通过使用sender.setTitle(“不同于”,forState:UIControlState.Normal)在我的子类中创建IBOutlet和在tableviewcontroller类中创建IBAction方法来实现此目的。但是当我点击它时,该方法将一堆其他tableviewcell的按钮变为“不同”,基本上复制了一个单元格的行为。这样做的方式是它会改变其他所有单元格,因此如果单击2个连续单元格的“like”按钮,表格视图中的所有单元格将变为“不同”。这是tableViewController的代码:

class TableViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {

    @IBOutlet weak var tableView: UITableView!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
    }

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 30
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        var cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as TableViewCell
        cell.tag = indexPath.row
        cell.like.tag = indexPath.row
        cell.like.addTarget(self, action: "handleLikes:", forControlEvents: .TouchUpInside)
        return cell
    }

    @IBAction func handleLikes(sender: AnyObject){
        println(sender.tag) // This works, every cell returns a different number and in order.
        sender.setTitle("Pressed", forState: UIControlState.Normal)
    }

这是我的TableViewCell类的代码:

class TableViewCell: UITableViewCell {

    @IBOutlet weak var like: UIButton!

    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code

    }

    override func setSelected(selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)

        // Configure the view for the selected state
    }

}

此外,这是无关紧要的,但如果有人读到这篇文章可以告诉我如何改进我的风格和/或代码的清晰度,我也会很感激。

1 个答案:

答案 0 :(得分:11)

UITableViewCell是可重复使用的。这意味着你必须将标题设置为"不像"或"喜欢"对于每个细胞。最简单的方法,因为我认为你无论如何都会阅读数据,就是在ViewController

中创建一系列字符串

将此添加到您的ViewControllervar likes: [String]!

ViewDidLoad中的

likes = [String](count: 20, repeatedValue: "like") 请注意,长度应基于您将显示的UITableViewCells的数量。

您的cellForRowAtIndexPath

func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
    let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as TableViewCell
    cell.like.tag = indexPath.row
    cell.like.addTarget(self, action: "handleLikes:", forControlEvents: .TouchUpInside)
    cell.like.setTitle(likes[indexPath.row], forState: UIControlState.Normal)
    return cell
}

handleLikes功能:

func handleLikes(sender: AnyObject){
    println(sender.tag) // This works, every cell returns a different number and in order.
    if likes[sender.tag] == "like" {
        likes[sender.tag] = "unlike"
    }
    else {
        likes[sender.tag] = "like"
    }
    sender.setTitle(likes[sender.tag], forState: UIControlState.Normal)
}