By default there is a single line separator in uitableview.
But I want to put my customized line as a separator.
Is it possible ? How ?
Thanks in advance for helping me.
|
By default there is a single line separator in uitableview. But I want to put my customized line as a separator. Is it possible ? How ? Thanks in advance for helping me. |
|||
|
|
|
If you want to do more than change the color of the separator using the separatorColor property of the UITableView then you could set the separatorStyle property to UITableViewCellSeparatorStyleNone and then either:
For example, if your table currently displays 5 rows you could update it to display 9 rows and the rows at index 1, 3, 5, 7 would be separator cells. See Subclassing UITableViewCell in the Table View Programming Guide for more information on how to create custom UITableViewCells. |
||||
|
|
|
A better solution is to use the cell's current width and height. Something like this:
|
|||
|
|
|
You add the following code
Note: i dont know how heavy it is on the performance. |
|||
|
|
I dont know if this can be done "automatically" with some setting. But a suggestion would be to set the line separator as none, and in the borders of your cells actually draw your line separator that you want.. |
|||
|
|
|
If you need different seperator colors for different rows OR you want the seperator to remain visible when the row is highlighted on tap then try this:
This assumes your cell's background color is transparent. The above solution came out of some extensive experimentation. Here's some notes on my findings that I'm sure will help people: In the normal “not selected” state
A cell is selected, the following occurs immediately with-OUT any animation:
When the cell is deselected, an animation to remove the highlighting starts:
|
||||
|
|
|
On a retina display, even drawing a 0.5 unit line will result in a two-pixel line, due to anti-aliasing. To render it as a single pixel on both displays, shift it up one quarter of a unit:
|
|||
|
|