Skip to content

Instantly share code, notes, and snippets.

@floprr
floprr / UITableView+Animations.m
Created June 23, 2015 16:35
UITableView category method to smoothly animate in content (cells, headers and footers) after loading data.
/*
# Place this method inside a UITableView category.
# Usage:
[theTableView reloadData];
[theTableView layoutSubviews];
[theTableView tbl_animateInVisibleCells];
# If you don't want to use a category, replace 'self' with your tableView.