iOS Question B4XDrawer

Jorge Sanz

Member
Licensed User
Hello, I want to make a delizing menu in ios, I have downloaded this class but it gives me the following error when opening b4i (version 4.80) unknown member: touch_action_up
 

Jorge Sanz

Member
Licensed User
if I want in a different module to the main load the pages of the B4XDrawer, I get an error if the central page has a tabstrip

B4X:
Public Sub Show
    NavControl = Main.NavControl
    
    
    
    MainPage.Initialize("MainPage")

    NavControl.ShowPage(MainPage)
    
    MainPage.RootPanel.LoadLayout("principal")
    
    sm.Initialize(Me,"SlidingMenu",MainPage.RootPanel,100%x)
    
    sm.CenterPanel.LoadLayout("Principal")
    sm.LeftPanel.LoadLayout("Menu")
    
            
    
    
End Sub
 
Upvote 0

Jorge Sanz

Member
Licensed User
Copying updated assets files (1)
Application_Start
Application_Active
SignalHandler 11
Error occurred on line: 41 (Main)
Signal - 11
Stack Trace: (
"0 B4i Example SignalHandler + 112",
"1 libsystem_platform.dylib 0x1c688251 _sigtramp + 16",
"2 UIKit <redacted> + 66",
"3 UIKit <redacted> + 56",
"4 B4i Example -[XLButtonBarView updateSelectedBarPositionWithAnimation:swipeDirection:pagerScroll:] + 170",
"5 B4i Example -[XLButtonBarView moveToIndex:animated:swipeDirection:pagerScroll:] + 54",
"6 B4i Example -[XLButtonBarPagerTabStripViewController viewWillLayoutSubviews] + 294",
"7 UIKit <redacted> + 922",
"8 QuartzCore <redacted> + 126",
"9 QuartzCore <redacted> + 354"
)
 
Upvote 0
Top