Swift reuse cells in ios7.1 simulator, cells are hidden
问题 This works on iOS8.1 simulator perfectly. Original code: func updateCell(path:Int){ let indexPath = NSIndexPath(forRow: path, inSection: 0) tableView.beginUpdates() tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Fade) tableView.endUpdates() } override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { var cell:PhotoCell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath)