#import "TableViewAnimationKitHeaders.h"
- (void)viewDidLoad {
    [super viewDidLoad];
    // .......
    [_homePageTableView reloadData];
    [self starAnimationWithTableView:self.homePageTableView];
}
- (void)starAnimationWithTableView:(UITableView *)tableView {
    int x = arc4random() % 11;
    [TableViewAnimationKit showWithAnimationType:x tableView:tableView];
}