iOS Question TableView LongClick does not have SectionIndex and TableCell

gregchao

Member
Licensed User
Longtime User
I am using TableView in B4i application and would like to utilize the LongClick but it doesn't supply the SectionIndex and TableCell value like "SelectedChanged. How do I get it? See below for example of the two:

Sub TableView1_SelectedChanged (SectionIndex As Int, Cell As TableCell)

End Sub

Sub Tableview1_LongClick

End Sub
 
Top