i am using following : cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
so it shows ">" for all cell but i want it should not seen on 1st cell because it is head line for table

now its look like cell 1 ---Status 000>
2 ---Detail1000>
3 ---Detail200 >

but I need cell 1 ---Status 000>
2 ---Detail1000>
3 ---Detail200 >
0-as spaces in short i dont need ">" on 1st cell in my table view as it dont have any detail view
thank you in advance

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

in your cellForRowAtIndexPath do this:

if ( indexPath.row == 0 )
    cell.accessoryType = UITableViewCellAccessoryNone;
else
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
link|improve this answer
thank u so much for quick reply – Pooja Feb 11 '11 at 15:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.