├── .gitignore ├── .gitmodules ├── Classes ├── AppDelegate.h ├── AppDelegate.m ├── RootViewController.h ├── RootViewController.m ├── ToastManager.h ├── ToastManager.m ├── ToastMessage.h ├── ToastMessage.m ├── ToastStyle.h └── ToastStyle.m ├── README.mdown ├── close.png ├── close.psd ├── close@2x.png ├── close_selected.png ├── close_selected@2x.png ├── ios-toast.xcodeproj └── project.pbxproj ├── ios_toast-Info.plist ├── ios_toast_Prefix.pch ├── main.m ├── screenshot1.png └── screenshot2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/.gitmodules -------------------------------------------------------------------------------- /Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/Classes/AppDelegate.m -------------------------------------------------------------------------------- /Classes/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/Classes/RootViewController.h -------------------------------------------------------------------------------- /Classes/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/Classes/RootViewController.m -------------------------------------------------------------------------------- /Classes/ToastManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/Classes/ToastManager.h -------------------------------------------------------------------------------- /Classes/ToastManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/Classes/ToastManager.m -------------------------------------------------------------------------------- /Classes/ToastMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/Classes/ToastMessage.h -------------------------------------------------------------------------------- /Classes/ToastMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/Classes/ToastMessage.m -------------------------------------------------------------------------------- /Classes/ToastStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/Classes/ToastStyle.h -------------------------------------------------------------------------------- /Classes/ToastStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/Classes/ToastStyle.m -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/README.mdown -------------------------------------------------------------------------------- /close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/close.png -------------------------------------------------------------------------------- /close.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/close.psd -------------------------------------------------------------------------------- /close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/close@2x.png -------------------------------------------------------------------------------- /close_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/close_selected.png -------------------------------------------------------------------------------- /close_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/close_selected@2x.png -------------------------------------------------------------------------------- /ios-toast.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/ios-toast.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios_toast-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/ios_toast-Info.plist -------------------------------------------------------------------------------- /ios_toast_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/ios_toast_Prefix.pch -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/main.m -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/screenshot1.png -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esilverberg/ios-toast/HEAD/screenshot2.png --------------------------------------------------------------------------------