iOS Question Referencing a specific item in CLV

gmoriwaki

Member
Licensed User
For some reason, this is baffling me...How do I reference a specific index in a custom list view?

Sub:
Sub ShowList(clvMain As CustomListView)
    
    Dim i As Int    'ignore
    
    For x=1 To 30
        
        clvMain.AddTextItem("Item " & x, "key" & x)
        
    Next
    
End Sub

I would think it would be clvMain.index(4) if I am getting the data from index 4, but that is not a possible option when I try it.

Thanks
 
Top