├── .gitignore ├── ILTranslucentView.podspec ├── ILTranslucentView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── ILTranslucentView.xcscheme ├── ILTranslucentView └── Info.plist ├── LICENSE ├── README.md ├── ScreenShot example.png ├── Source ├── ILTranslucentView.h ├── ILTranslucentView.m └── ILTranslucentView.swift └── StoryboardOrXIB.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/.gitignore -------------------------------------------------------------------------------- /ILTranslucentView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/ILTranslucentView.podspec -------------------------------------------------------------------------------- /ILTranslucentView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/ILTranslucentView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ILTranslucentView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/ILTranslucentView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ILTranslucentView.xcodeproj/xcshareddata/xcschemes/ILTranslucentView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/ILTranslucentView.xcodeproj/xcshareddata/xcschemes/ILTranslucentView.xcscheme -------------------------------------------------------------------------------- /ILTranslucentView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/ILTranslucentView/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShot example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/ScreenShot example.png -------------------------------------------------------------------------------- /Source/ILTranslucentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/Source/ILTranslucentView.h -------------------------------------------------------------------------------- /Source/ILTranslucentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/Source/ILTranslucentView.m -------------------------------------------------------------------------------- /Source/ILTranslucentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/Source/ILTranslucentView.swift -------------------------------------------------------------------------------- /StoryboardOrXIB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoleko/ILTranslucentView/HEAD/StoryboardOrXIB.png --------------------------------------------------------------------------------