├── .gitignore ├── LICENSE ├── Placeholders.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── oleg.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Placeholders.xcscheme │ └── xcschememanagement.plist ├── Placeholders ├── Info.plist ├── Iterators.swift ├── Placeholders+UIKit.swift ├── Placeholders.h └── Placeholders.swift ├── PlaceholdersTests ├── Info.plist └── PlaceholdersTests.swift ├── README.md └── Resources └── Demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/LICENSE -------------------------------------------------------------------------------- /Placeholders.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Placeholders.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Placeholders.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Placeholders.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Placeholders.xcodeproj/xcuserdata/oleg.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Placeholders.xcodeproj/xcuserdata/oleg.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Placeholders.xcodeproj/xcuserdata/oleg.xcuserdatad/xcschemes/Placeholders.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Placeholders.xcodeproj/xcuserdata/oleg.xcuserdatad/xcschemes/Placeholders.xcscheme -------------------------------------------------------------------------------- /Placeholders.xcodeproj/xcuserdata/oleg.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Placeholders.xcodeproj/xcuserdata/oleg.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Placeholders/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Placeholders/Info.plist -------------------------------------------------------------------------------- /Placeholders/Iterators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Placeholders/Iterators.swift -------------------------------------------------------------------------------- /Placeholders/Placeholders+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Placeholders/Placeholders+UIKit.swift -------------------------------------------------------------------------------- /Placeholders/Placeholders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Placeholders/Placeholders.h -------------------------------------------------------------------------------- /Placeholders/Placeholders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Placeholders/Placeholders.swift -------------------------------------------------------------------------------- /PlaceholdersTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/PlaceholdersTests/Info.plist -------------------------------------------------------------------------------- /PlaceholdersTests/PlaceholdersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/PlaceholdersTests/PlaceholdersTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreymonde/Placeholders/HEAD/Resources/Demo.gif --------------------------------------------------------------------------------