I have created a Activity indicator in the storyboard in my custom cell.
in cellForRowAtIndexPath:
cell.btnDownload.tag = indexPath.row
cell.btnDownload.addTarget(self, action: "downloadButton:", forControlEvents: .TouchUpInside)
in downloadButton(sender: AnyObject):
let button: UIButton = sender as UIButton;
let i = NSIndexPath(forRow: button.tag, inSection: 0)
//customCell *cell = (customCell *)[(UITableView *)self.view cellForRowAtIndexPath:i]
//cell.actInd.startAnimating()
Here I would like to get the cell I'm in currently and startAnimating() the activity indicator. Is this the way to do it in obj c? If that is the case how do I rewrite this for Swift?
Kind regards
Just by rewriting the obj c code I posted in the original question, it works. Thx for the replies anyway.