views:

26

answers:

1

Is it possible ?

I used 3 label in cell of UITableView. I want to make to first row is a header and fixed position always when scroll. Section header can't show right position of label.

alt text

Lost Angeles, U.S.A should be show on second column but first columns text is too long.

+1  A: 

You can place the UIView with the content of the first cell on top of the UITableView. When you fill up the cells you should leave the first cell empty (it will be covered by the fixed UIView in the initial position).

Sergei Lost