iOS Question tableview click dont work!?

cloner7801

Active Member
Licensed User
Longtime User
Hi,
I am using tableview2 library with one row with custom But tableview items cant click ! (I can click but with 2 finger !! , tocuh the row and tap again on that row and after that it click ! but it should be click easily)

Process_Globals:

Dim tw AsTableView


B4X:
tw.Initialize("tw",True)

   
    tw.AddSection("Account","")
    Dim items As List = tw.GetItems(0)
   
    Dim tc As TableCell
    tc.InitializeSingleLine("Edit Profile")

    items.InsertAt(0, tc)
   
    Dim tc As TableCell
    tc.InitializeSingleLine("Change Password")
    items.InsertAt(0, tc)


   
    tw.ReloadSection(0)
   
   
   
    tw.AddSection("Setting","")
    Dim items As List = tw.GetItems(1)

    Dim tc As TableCell
    'tc.InitializeSingleLine("Flash on Notification")
    tc.CustomView = CreateItem
    tc.Tag = 0
    tc.ShowSelection = False
    items.InsertAt(0, tc)
   
    tw.ReloadSection(1)
   
   
    tw.AddSection("About","")
    Dim items As List = tw.GetItems(2)
   
   
   
    Dim tc As TableCell
    tc.InitializeSingleLine("Logout")
    tc.Text.Initialize("Logout",Font.CreateNew(17),Colors.Red)
    items.InsertAt(0, tc)
   
   
    Dim tc As TableCell
    tc.InitializeSingleLine("FAQ")
    items.InsertAt(0, tc)
    Dim tc As TableCell
    tc.InitializeSingleLine("Ask & Question")
    items.InsertAt(0, tc)
   
    Dim tc As TableCell
    tc.InitializeSingleLine("Report Problem")
    items.InsertAt(0, tc)
   
    tw.ReloadSection(2)
   

   
    tw.EndUpdates
   
   
    panel1.addview(tw.BaseView,0,0,panel1.Width,panel1.Height)
 
Top