I have a table view in my app. The table view cells has background with pattern image. Table view content is changing and sometimes there are only two or three cells with content info. And table view automatically add other cells to bottom of screen. The problem is the background of these cells is clear but i want to make background same as other cells (with pattern image). Usually i change cells appearance in cellForRowAtIndexPath. But table view don'call this method for cells that created automatically. So, is there any solution?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You could do this in viewDidLoad()
|
|||
|
|
|
Did you try to subclass your tableview cells and set their background in their initializer? |
|||
|
|
cellForRowAtIndexPath:on your table view instance. – H2CO3 Dec 1 '12 at 15:42cellForRowAtIndexPath:will only return visible cells. – Adam Johnson Dec 1 '12 at 16:08