I have a simple UITableView
not scrollable and with no need to reuse cells.
I have a custom cell class with a .xib file.
My goal is to pass the index path with a custom init inside the protocol method
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
when I create the custom cells in order to use the indexPath
inside my customCellClass.m
Is there any way to achieve that?