views:

729

answers:

1

Hi,

i was working on an app in sdk 2.x and every thing was working fine. but now i have updated my sdk to 3.0 and found didSelectRowAtIndexPath of tableview is not working.

any one know why its heppning????

Thankz in Adv.

Muhammad Usman Aleem

+1  A: 

The Table View Programming Guide says:

"You can control whether rows are selectable when the table view is in editing mode by setting the allowsSelectionDuringEditing property of UITableView. In addition, beginning with iPhone OS 3.0, you can control whether cells are selectable when editing mode is not in effect by setting the allowsSelection property."

So if things changed from 2.2.1 to 3.0 perhaps you have allowsSelection set to NO.

David Maymudes
got the prob... i was using custom cell and it is calling its touchdown event..i don't why it was working on 2.2.1 and not on 3.0.any how now i find the prob and InshAllah ll solve it.Thankz for ur response David.Muhammad Usman Aleem
Usman
What was the solution?
Tai Squared