I have UITableView
which uses custom UITableViewCell
s. The cells can have one of three types of background images (set in each cell\'s .backgrou
I haven't tried myself but why not test your indexPath.row value on the cellForRowAtIndexPath method and provide the different backgroundView.image values for first and last row?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
I hope this helps. Cheers, Rog