gitextract_gdlg0pfg/ ├── .idea/ │ ├── .name │ ├── JTFadingInfoViewController.iml │ ├── codeStyleSettings.xml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes/ │ │ └── scope_settings.xml │ ├── vcs.xml │ ├── workspace.xml │ └── xcode.xml ├── Example/ │ ├── JTFadingInfoView/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.xib │ │ ├── Class/ │ │ │ ├── JTFadingInfoView.h │ │ │ └── JTFadingInfoView.m │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── cyan-pentagonal-background.imageset/ │ │ │ │ └── Contents.json │ │ │ └── icon.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LogInViewController.h │ │ ├── LogInViewController.m │ │ ├── LogInViewController.xib │ │ ├── PropertyViewController.h │ │ ├── PropertyViewController.m │ │ ├── PropertyViewController.xib │ │ ├── RootViewController.h │ │ ├── RootViewController.m │ │ └── main.m │ ├── JTFadingInfoView.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata/ │ │ │ │ └── JTFadingInfoView.xccheckout │ │ │ └── xcuserdata/ │ │ │ └── DCL_JT.xcuserdatad/ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata/ │ │ └── DCL_JT.xcuserdatad/ │ │ ├── xcdebugger/ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes/ │ │ ├── JTFadingInfoViewController.xcscheme │ │ └── xcschememanagement.plist │ └── JTFadingInfoViewTests/ │ ├── Info.plist │ └── JTFadingInfoViewTests.m ├── JTFadingInfoView.podspec ├── LICENSE ├── Pod/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ ├── JTFadingInfoView.h │ └── JTFadingInfoView.m └── README.md