├── .gitignore ├── Classes ├── FTAnimation+UIView.m ├── FTAnimationManager.m ├── FTUtils+NSObject.m └── FTUtils+UIGestureRecognizer.m ├── Examples ├── AnimationChaining.h ├── AnimationChaining.m ├── BackInOut.h ├── BackInOut.m ├── Checkers.png ├── ExampleManager.h ├── ExampleManager.m ├── ExamplesAppDelegate.h ├── ExamplesAppDelegate.m ├── Examples_Prefix.pch ├── FTUtilsExample.h ├── FadeBackgroundColorInOut.h ├── FadeBackgroundColorInOut.m ├── FadeInOut.h ├── FadeInOut.m ├── FallInOut.h ├── FallInOut.m ├── FlyOut.h ├── FlyOut.m ├── GestureRecognizerBlocks.h ├── GestureRecognizerBlocks.m ├── PopInOut.h ├── PopInOut.m ├── RootViewController.h ├── RootViewController.m ├── SimpleAnimationExample.h ├── SimpleAnimationExample.m ├── SlideInOut.h ├── SlideInOut.m ├── ViewBackground.png └── main.m ├── FTAnimationExamples-Info.plist ├── FTUtils.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── FTUtils.xcworkspace └── contents.xcworkspacedata ├── FTUtils_Prefix.pch ├── Headers └── FTUtils │ ├── FTAnimation+UIView.h │ ├── FTAnimation.h │ ├── FTAnimationManager.h │ ├── FTUtils+NSObject.h │ ├── FTUtils+UIGestureRecognizer.h │ └── FTUtils.h ├── Info.plist ├── LICENSE ├── Makefile ├── README.mdown ├── Support └── OCMock.framework │ ├── Headers │ ├── OCMock │ ├── Resources │ └── Versions │ ├── A │ ├── Headers │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── OCMArg.h │ │ ├── OCMConstraint.h │ │ ├── OCMock.h │ │ ├── OCMockObject.h │ │ └── OCMockRecorder.h │ ├── OCMock │ └── Resources │ │ ├── Info.plist │ │ └── License.txt │ └── Current ├── Tests └── TestFTAnimationManager.m ├── UnitTests-Info.plist ├── UnitTests ├── UnitTests-Info.plist ├── UnitTests-Prefix.pch └── en.lproj │ └── InfoPlist.strings ├── VERSION └── apidocs └── .templates ├── docset └── Contents │ ├── Resources │ ├── Documents │ │ └── documents-template │ ├── nodes-template.xml │ └── tokens-template.xml │ └── info-template.plist └── html ├── css └── styles.css ├── document-template.html ├── hierarchy-template.html ├── img ├── button_bar_background.png ├── disclosure.png ├── disclosure_open.png └── title_background.png ├── index-template.html └── object-template.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/FTAnimation+UIView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Classes/FTAnimation+UIView.m -------------------------------------------------------------------------------- /Classes/FTAnimationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Classes/FTAnimationManager.m -------------------------------------------------------------------------------- /Classes/FTUtils+NSObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Classes/FTUtils+NSObject.m -------------------------------------------------------------------------------- /Classes/FTUtils+UIGestureRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Classes/FTUtils+UIGestureRecognizer.m -------------------------------------------------------------------------------- /Examples/AnimationChaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/AnimationChaining.h -------------------------------------------------------------------------------- /Examples/AnimationChaining.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/AnimationChaining.m -------------------------------------------------------------------------------- /Examples/BackInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/BackInOut.h -------------------------------------------------------------------------------- /Examples/BackInOut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/BackInOut.m -------------------------------------------------------------------------------- /Examples/Checkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/Checkers.png -------------------------------------------------------------------------------- /Examples/ExampleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/ExampleManager.h -------------------------------------------------------------------------------- /Examples/ExampleManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/ExampleManager.m -------------------------------------------------------------------------------- /Examples/ExamplesAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/ExamplesAppDelegate.h -------------------------------------------------------------------------------- /Examples/ExamplesAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/ExamplesAppDelegate.m -------------------------------------------------------------------------------- /Examples/Examples_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/Examples_Prefix.pch -------------------------------------------------------------------------------- /Examples/FTUtilsExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/FTUtilsExample.h -------------------------------------------------------------------------------- /Examples/FadeBackgroundColorInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/FadeBackgroundColorInOut.h -------------------------------------------------------------------------------- /Examples/FadeBackgroundColorInOut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/FadeBackgroundColorInOut.m -------------------------------------------------------------------------------- /Examples/FadeInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/FadeInOut.h -------------------------------------------------------------------------------- /Examples/FadeInOut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/FadeInOut.m -------------------------------------------------------------------------------- /Examples/FallInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/FallInOut.h -------------------------------------------------------------------------------- /Examples/FallInOut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/FallInOut.m -------------------------------------------------------------------------------- /Examples/FlyOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/FlyOut.h -------------------------------------------------------------------------------- /Examples/FlyOut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/FlyOut.m -------------------------------------------------------------------------------- /Examples/GestureRecognizerBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/GestureRecognizerBlocks.h -------------------------------------------------------------------------------- /Examples/GestureRecognizerBlocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/GestureRecognizerBlocks.m -------------------------------------------------------------------------------- /Examples/PopInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/PopInOut.h -------------------------------------------------------------------------------- /Examples/PopInOut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/PopInOut.m -------------------------------------------------------------------------------- /Examples/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/RootViewController.h -------------------------------------------------------------------------------- /Examples/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/RootViewController.m -------------------------------------------------------------------------------- /Examples/SimpleAnimationExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/SimpleAnimationExample.h -------------------------------------------------------------------------------- /Examples/SimpleAnimationExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/SimpleAnimationExample.m -------------------------------------------------------------------------------- /Examples/SlideInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/SlideInOut.h -------------------------------------------------------------------------------- /Examples/SlideInOut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/SlideInOut.m -------------------------------------------------------------------------------- /Examples/ViewBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/ViewBackground.png -------------------------------------------------------------------------------- /Examples/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Examples/main.m -------------------------------------------------------------------------------- /FTAnimationExamples-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/FTAnimationExamples-Info.plist -------------------------------------------------------------------------------- /FTUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/FTUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FTUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/FTUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FTUtils.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/FTUtils.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FTUtils_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/FTUtils_Prefix.pch -------------------------------------------------------------------------------- /Headers/FTUtils/FTAnimation+UIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Headers/FTUtils/FTAnimation+UIView.h -------------------------------------------------------------------------------- /Headers/FTUtils/FTAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Headers/FTUtils/FTAnimation.h -------------------------------------------------------------------------------- /Headers/FTUtils/FTAnimationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Headers/FTUtils/FTAnimationManager.h -------------------------------------------------------------------------------- /Headers/FTUtils/FTUtils+NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Headers/FTUtils/FTUtils+NSObject.h -------------------------------------------------------------------------------- /Headers/FTUtils/FTUtils+UIGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Headers/FTUtils/FTUtils+UIGestureRecognizer.h -------------------------------------------------------------------------------- /Headers/FTUtils/FTUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Headers/FTUtils/FTUtils.h -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Makefile -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/README.mdown -------------------------------------------------------------------------------- /Support/OCMock.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Support/OCMock.framework/OCMock: -------------------------------------------------------------------------------- 1 | Versions/Current/OCMock -------------------------------------------------------------------------------- /Support/OCMock.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Support/OCMock.framework/Versions/A/Headers/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Support/OCMock.framework/Versions/A/Headers/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Support/OCMock.framework/Versions/A/Headers/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Support/OCMock.framework/Versions/A/Headers/OCMArg.h -------------------------------------------------------------------------------- /Support/OCMock.framework/Versions/A/Headers/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Support/OCMock.framework/Versions/A/Headers/OCMConstraint.h -------------------------------------------------------------------------------- /Support/OCMock.framework/Versions/A/Headers/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Support/OCMock.framework/Versions/A/Headers/OCMock.h -------------------------------------------------------------------------------- /Support/OCMock.framework/Versions/A/Headers/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Support/OCMock.framework/Versions/A/Headers/OCMockObject.h -------------------------------------------------------------------------------- /Support/OCMock.framework/Versions/A/Headers/OCMockRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Support/OCMock.framework/Versions/A/Headers/OCMockRecorder.h -------------------------------------------------------------------------------- /Support/OCMock.framework/Versions/A/OCMock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Support/OCMock.framework/Versions/A/OCMock -------------------------------------------------------------------------------- /Support/OCMock.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Support/OCMock.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Support/OCMock.framework/Versions/A/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Support/OCMock.framework/Versions/A/Resources/License.txt -------------------------------------------------------------------------------- /Support/OCMock.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Tests/TestFTAnimationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/Tests/TestFTAnimationManager.m -------------------------------------------------------------------------------- /UnitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/UnitTests-Info.plist -------------------------------------------------------------------------------- /UnitTests/UnitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/UnitTests/UnitTests-Info.plist -------------------------------------------------------------------------------- /UnitTests/UnitTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/UnitTests/UnitTests-Prefix.pch -------------------------------------------------------------------------------- /UnitTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.1.0 2 | -------------------------------------------------------------------------------- /apidocs/.templates/docset/Contents/Resources/Documents/documents-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/docset/Contents/Resources/Documents/documents-template -------------------------------------------------------------------------------- /apidocs/.templates/docset/Contents/Resources/nodes-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/docset/Contents/Resources/nodes-template.xml -------------------------------------------------------------------------------- /apidocs/.templates/docset/Contents/Resources/tokens-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/docset/Contents/Resources/tokens-template.xml -------------------------------------------------------------------------------- /apidocs/.templates/docset/Contents/info-template.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/docset/Contents/info-template.plist -------------------------------------------------------------------------------- /apidocs/.templates/html/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/html/css/styles.css -------------------------------------------------------------------------------- /apidocs/.templates/html/document-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/html/document-template.html -------------------------------------------------------------------------------- /apidocs/.templates/html/hierarchy-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/html/hierarchy-template.html -------------------------------------------------------------------------------- /apidocs/.templates/html/img/button_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/html/img/button_bar_background.png -------------------------------------------------------------------------------- /apidocs/.templates/html/img/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/html/img/disclosure.png -------------------------------------------------------------------------------- /apidocs/.templates/html/img/disclosure_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/html/img/disclosure_open.png -------------------------------------------------------------------------------- /apidocs/.templates/html/img/title_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/html/img/title_background.png -------------------------------------------------------------------------------- /apidocs/.templates/html/index-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/html/index-template.html -------------------------------------------------------------------------------- /apidocs/.templates/html/object-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/ftutils/HEAD/apidocs/.templates/html/object-template.html --------------------------------------------------------------------------------