gitextract_owcjc1_j/ ├── .gitignore ├── .swift-version ├── APESuperHUD.podspec ├── APESuperHUD.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── APESuperHUD.xcscheme ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Demo/ │ ├── APESuperHUDDemo/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── apegroup.imageset/ │ │ │ │ └── Contents.json │ │ │ └── spark.imageset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ └── APESuperHUDDemo.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── LICENSE ├── Package.swift ├── README.md ├── Resources/ │ ├── APESuperHUD.xib │ └── FrameworkMedia.xcassets/ │ ├── Contents.json │ ├── checkmark_icon.imageset/ │ │ └── Contents.json │ ├── email_icon.imageset/ │ │ └── Contents.json │ ├── happy_face_icon.imageset/ │ │ └── Contents.json │ ├── info_icon.imageset/ │ │ └── Contents.json │ └── sad_face_icon.imageset/ │ └── Contents.json ├── Source/ │ ├── APESuperHUD.h │ ├── APESuperHUD.swift │ ├── HUDStyle.swift │ └── HudAppearance.swift ├── SupportFiles/ │ └── Info.plist └── Tests/ ├── APESuperHUDTests.swift └── Info.plist