// // UITableView+HLTEnumarateCells.h // // Created by Maciej Banasiewicz. // @import UIKit; typedef void(^tableviewEnumerateHandler)(UITableViewCell *, BOOL *); @interface UITableView (EnumarateCells) - (void)enumarateTableViewCellsUsingBlock:(tableviewEnumerateHandler)handler; - (void)enumarateTableViewCellsSection:(NSInteger)section UsingBlock:(tableviewEnumerateHandler)handler; @end