├── .DS_Store ├── .gitignore ├── LatestBuild ├── Packages ├── com.BandarHL.SCLAlertView_0.1-1_iphoneos-arm.deb └── com.BandarHL.SCLAlertView_0.1-1_iphoneos-arm.zip ├── README.md ├── SCLAlertView.dylib ├── SCLAlertView.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── SCLAlertView ├── Package ├── DEBIAN │ └── control └── Library │ └── MobileSubstrate │ └── DynamicLibraries │ ├── SCLAlertView.dylib │ └── SCLAlertView.plist ├── SCLAlertView-Prefix.pch ├── SCLAlertView.mm ├── SCLAlertView.xm └── SCLAlertViewLIbrary ├── SCLAlertView.h ├── SCLAlertView.m ├── SCLAlertViewResponder.h ├── SCLAlertViewResponder.m ├── SCLAlertViewStyleKit.h ├── SCLAlertViewStyleKit.m ├── SCLButton.h ├── SCLButton.m ├── SCLMacros.h ├── SCLSwitchView.h ├── SCLSwitchView.m ├── SCLTextView.h ├── SCLTextView.m ├── SCLTimerDisplay.h ├── SCLTimerDisplay.m ├── UIImage+ImageEffects.h └── UIImage+ImageEffects.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/.gitignore -------------------------------------------------------------------------------- /LatestBuild: -------------------------------------------------------------------------------- 1 | /Users/mac/Library/Developer/Xcode/DerivedData/SCLAlertView-adicgvnhlrwwtcgccywscdjnnjcs/Build/Products/Debug-iphoneos -------------------------------------------------------------------------------- /Packages/com.BandarHL.SCLAlertView_0.1-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/Packages/com.BandarHL.SCLAlertView_0.1-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /Packages/com.BandarHL.SCLAlertView_0.1-1_iphoneos-arm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/Packages/com.BandarHL.SCLAlertView_0.1-1_iphoneos-arm.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/README.md -------------------------------------------------------------------------------- /SCLAlertView.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView.dylib -------------------------------------------------------------------------------- /SCLAlertView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SCLAlertView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SCLAlertView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SCLAlertView/Package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/Package/DEBIAN/control -------------------------------------------------------------------------------- /SCLAlertView/Package/Library/MobileSubstrate/DynamicLibraries/SCLAlertView.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/Package/Library/MobileSubstrate/DynamicLibraries/SCLAlertView.dylib -------------------------------------------------------------------------------- /SCLAlertView/Package/Library/MobileSubstrate/DynamicLibraries/SCLAlertView.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/Package/Library/MobileSubstrate/DynamicLibraries/SCLAlertView.plist -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertView-Prefix.pch -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertView.mm -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertView.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertView.xm -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLAlertView.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLAlertView.m -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLButton.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLButton.m -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLMacros.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLSwitchView.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLSwitchView.m -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLTextView.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLTextView.m -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLTimerDisplay.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/SCLTimerDisplay.m -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewLIbrary/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BandarHL/SCLAlertViewDylib/HEAD/SCLAlertView/SCLAlertViewLIbrary/UIImage+ImageEffects.m --------------------------------------------------------------------------------