gitextract_fgu9pioj/ ├── BBGestureBack.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata/ │ │ ├── Bonway.xcuserdatad/ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── user.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata/ │ ├── Bonway.xcuserdatad/ │ │ ├── xcdebugger/ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes/ │ │ ├── BBGestureBack_Full_oc.xcscheme │ │ ├── BBGestureBack_Full_swift.xcscheme │ │ ├── BBGestureBack_SysFull_oc.xcscheme │ │ └── xcschememanagement.plist │ └── user.xcuserdatad/ │ ├── xcdebugger/ │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes/ │ └── xcschememanagement.plist ├── BBGestureBack_Full_oc/ │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Navigation/ │ │ │ ├── Contents.json │ │ │ └── bb_navigation_back.imageset/ │ │ │ └── Contents.json │ │ ├── TabBar/ │ │ │ ├── Contents.json │ │ │ ├── TabBarHomeNormal.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── TabBarHomeSelected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── TabBarUserNormal.imageset/ │ │ │ │ └── Contents.json │ │ │ └── TabBarUserSelected.imageset/ │ │ │ └── Contents.json │ │ └── logo.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── Classes/ │ │ ├── Home/ │ │ │ ├── Index/ │ │ │ │ ├── HomeViewController.h │ │ │ │ └── HomeViewController.m │ │ │ ├── ViewController.h │ │ │ └── ViewController.m │ │ ├── Main/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── BBGestureBack/ │ │ │ │ ├── BBGestureBack.h │ │ │ │ ├── BBGestureBackConst.h │ │ │ │ ├── BBGestureBackConst.m │ │ │ │ ├── BBGestureBaseController.h │ │ │ │ └── BBGestureBaseController.m │ │ │ ├── BBNavigation/ │ │ │ │ ├── BBNavigationController.h │ │ │ │ └── BBNavigationController.m │ │ │ ├── BBTabBar/ │ │ │ │ ├── BBTabBarController.h │ │ │ │ └── BBTabBarController.m │ │ │ └── BBUserGuider/ │ │ │ ├── BBUserGuiderController.h │ │ │ └── BBUserGuiderController.m │ │ ├── Resource/ │ │ │ └── BBUserGuider.bundle/ │ │ │ ├── Root.plist │ │ │ └── en.lproj/ │ │ │ └── Root.strings │ │ └── User/ │ │ └── Index/ │ │ ├── UserViewController.h │ │ └── UserViewController.m │ ├── Info.plist │ └── main.m ├── BBGestureBack_Full_swift/ │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Navigation/ │ │ │ ├── Contents.json │ │ │ └── bb_navigation_back.imageset/ │ │ │ └── Contents.json │ │ ├── TabBar/ │ │ │ ├── Contents.json │ │ │ ├── TabBarHomeNormal.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── TabBarHomeSelected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── TabBarUserNormal.imageset/ │ │ │ │ └── Contents.json │ │ │ └── TabBarUserSelected.imageset/ │ │ │ └── Contents.json │ │ └── logo.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── Classes/ │ │ ├── Home/ │ │ │ ├── Index/ │ │ │ │ └── HomeViewController.swift │ │ │ └── ViewController.swift │ │ ├── Main/ │ │ │ ├── AppDelegate.swift │ │ │ ├── BBGestureBack/ │ │ │ │ ├── BBGestureBackConst.swift │ │ │ │ └── BBGestureBaseController.swift │ │ │ ├── BBNavigation/ │ │ │ │ └── BBNavigationController.swift │ │ │ ├── BBTabBar/ │ │ │ │ └── BBTabBarController.swift │ │ │ └── BBUserGuider/ │ │ │ └── BBUserGuiderController.swift │ │ ├── Resource/ │ │ │ └── BBUserGuider.bundle/ │ │ │ ├── Root.plist │ │ │ └── en.lproj/ │ │ │ └── Root.strings │ │ └── User/ │ │ └── Index/ │ │ └── UserViewController.swift │ └── Info.plist ├── BBGestureBack_SysFull_oc/ │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── TabBar/ │ │ │ ├── Contents.json │ │ │ ├── TabBarHomeNormal.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── TabBarHomeSelected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── TabBarUserNormal.imageset/ │ │ │ │ └── Contents.json │ │ │ └── TabBarUserSelected.imageset/ │ │ │ └── Contents.json │ │ └── logo.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── Classes/ │ │ ├── Home/ │ │ │ ├── Index/ │ │ │ │ ├── HomeViewController.h │ │ │ │ └── HomeViewController.m │ │ │ ├── ViewController.h │ │ │ └── ViewController.m │ │ ├── Main/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── BBNavigation/ │ │ │ │ ├── BBNavigationController.h │ │ │ │ └── BBNavigationController.m │ │ │ └── BBTabBar/ │ │ │ ├── BBTabBarController.h │ │ │ └── BBTabBarController.m │ │ └── User/ │ │ └── Index/ │ │ ├── UserViewController.h │ │ └── UserViewController.m │ ├── Info.plist │ └── main.m ├── BBGestureBack_SysFull_swift/ │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── TabBar/ │ │ │ ├── Contents.json │ │ │ ├── TabBarHomeNormal.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── TabBarHomeSelected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── TabBarUserNormal.imageset/ │ │ │ │ └── Contents.json │ │ │ └── TabBarUserSelected.imageset/ │ │ │ └── Contents.json │ │ └── logo.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── Classes/ │ │ ├── Home/ │ │ │ ├── Index/ │ │ │ │ └── HomeViewController.swift │ │ │ └── ViewController.swift │ │ ├── Main/ │ │ │ ├── AppDelegate.swift │ │ │ ├── BBNavigation/ │ │ │ │ └── BBNavigationController.swift │ │ │ └── BBTabBar/ │ │ │ └── BBTabBarController.swift │ │ └── User/ │ │ └── Index/ │ │ └── UserViewController.swift │ └── Info.plist └── README.md