I am wanting to create a custom UITableView cell. I would like to know how to do this. I understand how to actually create it and write code for it, but how can i create 1 style and then when i have more cells added, i want the same style. How can i do this? Is there a way to create 1 custom cell and have all the other cells that i want to add later follow this cells style?Thanks for the help!
|
In my projects I'm implementing method that creates custom style programmatically. Also it is possible to make custom cell via IB and when you need just take custom cell from it. Don't forget that if you will write your code correctly then your cells will be reused and that method will be called only for number of cells that are visible in your table view. |
|||
|
|
may be this can help you http://iphone-bitcode.blogspot.com/2011/06/custom-tableview-cell.html |
|||
|
|
Write a separate Then, each time you want a cell, try and
|
|||
|
|