Hi all,
this is my first post on this forum but I follow it from time...
I've have this problem: I'd like to create and customize an UITableViewCell from Xcode, directly with code, without using Interface Builder...
I'd like to create a cell that conteins 2 UIImage View and 3 UILabel of which two aligned...
I'm using the normal code for cellForRowAtIndexPath, generated from Xcode...
I tried this code:
Code:
cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"cellBg.png"]];
but without any result...
Can anyone help me?
Thanks