gitextract_g7hj0gle/ ├── .gitignore ├── README.md └── StartMovie/ ├── StartMovie/ │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── icon_tabbar_homepage.imageset/ │ │ │ └── Contents.json │ │ ├── icon_tabbar_homepage_selected.imageset/ │ │ │ └── Contents.json │ │ ├── icon_tabbar_merchant_normal.imageset/ │ │ │ └── Contents.json │ │ ├── icon_tabbar_merchant_selected.imageset/ │ │ │ └── Contents.json │ │ ├── icon_tabbar_mine.imageset/ │ │ │ └── Contents.json │ │ ├── icon_tabbar_mine_selected.imageset/ │ │ │ └── Contents.json │ │ ├── icon_tabbar_nearby_normal.imageset/ │ │ │ └── Contents.json │ │ └── icon_tabbar_nearby_selected.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── WSMovieController.h │ ├── WSMovieController.m │ ├── main/ │ │ ├── RootNavController.h │ │ ├── RootNavController.m │ │ ├── RootTabBarController.h │ │ ├── RootTabBarController.m │ │ ├── View111Controller.h │ │ ├── View111Controller.m │ │ ├── View222Controller.h │ │ ├── View222Controller.m │ │ ├── View333Controller.h │ │ └── View333Controller.m │ └── main.m ├── StartMovie.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── StartMovieTests/ │ ├── Info.plist │ └── StartMovieTests.m └── StartMovieUITests/ ├── Info.plist └── StartMovieUITests.m