what's the correct way to hide Skeleton
is
Hi @adelbios, you need to call hideSkeleton using the same view when you start to show it.
@adelbios, any news about this issue?
For now, I found a solution is that you can call hideSkeleton() method in cellForRowAt indexPath for cell object.
Example:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as! CustomTableViewCell
cell.hideSkeleton()
return cell
}
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
For now, I found a solution is that you can call hideSkeleton() method in
cellForRowAt indexPathfor cell object.Example: