├── QTRefreshAnimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── chenqitao.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── chenqitao.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── QTRefreshAnimation.xcscheme │ └── xcschememanagement.plist ├── QTRefreshAnimation ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── QTRefreshView.h ├── QTRefreshView.m ├── QTRefreshViewController.h ├── QTRefreshViewController.m ├── main.m ├── refresh.gif └── refresh.jpg ├── QTRefreshAnimationTests ├── Info.plist └── QTRefreshAnimationTests.m ├── QTRefreshAnimationUITests ├── Info.plist └── QTRefreshAnimationUITests.m └── README.md /QTRefreshAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /QTRefreshAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /QTRefreshAnimation.xcodeproj/project.xcworkspace/xcuserdata/chenqitao.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation.xcodeproj/project.xcworkspace/xcuserdata/chenqitao.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /QTRefreshAnimation.xcodeproj/xcuserdata/chenqitao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation.xcodeproj/xcuserdata/chenqitao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /QTRefreshAnimation.xcodeproj/xcuserdata/chenqitao.xcuserdatad/xcschemes/QTRefreshAnimation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation.xcodeproj/xcuserdata/chenqitao.xcuserdatad/xcschemes/QTRefreshAnimation.xcscheme -------------------------------------------------------------------------------- /QTRefreshAnimation.xcodeproj/xcuserdata/chenqitao.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation.xcodeproj/xcuserdata/chenqitao.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /QTRefreshAnimation/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/1.png -------------------------------------------------------------------------------- /QTRefreshAnimation/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/2.png -------------------------------------------------------------------------------- /QTRefreshAnimation/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/3.png -------------------------------------------------------------------------------- /QTRefreshAnimation/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/4.png -------------------------------------------------------------------------------- /QTRefreshAnimation/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/5.png -------------------------------------------------------------------------------- /QTRefreshAnimation/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/6.png -------------------------------------------------------------------------------- /QTRefreshAnimation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/AppDelegate.h -------------------------------------------------------------------------------- /QTRefreshAnimation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/AppDelegate.m -------------------------------------------------------------------------------- /QTRefreshAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /QTRefreshAnimation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /QTRefreshAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/Info.plist -------------------------------------------------------------------------------- /QTRefreshAnimation/QTRefreshView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/QTRefreshView.h -------------------------------------------------------------------------------- /QTRefreshAnimation/QTRefreshView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/QTRefreshView.m -------------------------------------------------------------------------------- /QTRefreshAnimation/QTRefreshViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/QTRefreshViewController.h -------------------------------------------------------------------------------- /QTRefreshAnimation/QTRefreshViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/QTRefreshViewController.m -------------------------------------------------------------------------------- /QTRefreshAnimation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/main.m -------------------------------------------------------------------------------- /QTRefreshAnimation/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/refresh.gif -------------------------------------------------------------------------------- /QTRefreshAnimation/refresh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimation/refresh.jpg -------------------------------------------------------------------------------- /QTRefreshAnimationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimationTests/Info.plist -------------------------------------------------------------------------------- /QTRefreshAnimationTests/QTRefreshAnimationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimationTests/QTRefreshAnimationTests.m -------------------------------------------------------------------------------- /QTRefreshAnimationUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimationUITests/Info.plist -------------------------------------------------------------------------------- /QTRefreshAnimationUITests/QTRefreshAnimationUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/QTRefreshAnimationUITests/QTRefreshAnimationUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenqitao/QTRefreshAnimation/HEAD/README.md --------------------------------------------------------------------------------