├── AFNetworking.podspec ├── AFNetworking.xcworkspace └── contents.xcworkspacedata ├── AFNetworking ├── AFHTTPClient.h ├── AFHTTPClient.m ├── AFHTTPRequestOperation.h ├── AFHTTPRequestOperation.m ├── AFImageCache.h ├── AFImageCache.m ├── AFImageRequestOperation.h ├── AFImageRequestOperation.m ├── AFJSONRequestOperation.h ├── AFJSONRequestOperation.m ├── AFJSONUtilities.h ├── AFNetworkActivityIndicatorManager.h ├── AFNetworkActivityIndicatorManager.m ├── AFNetworking.h ├── AFPropertyListRequestOperation.h ├── AFPropertyListRequestOperation.m ├── AFURLConnectionOperation.h ├── AFURLConnectionOperation.m ├── AFXMLRequestOperation.h ├── AFXMLRequestOperation.m ├── UIImageView+AFNetworking.h └── UIImageView+AFNetworking.m ├── LICENSE ├── Mac Example ├── AFNetworking Mac Example.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── mattt.xcuserdatad │ │ └── xcschemes │ │ ├── AFNetworking Mac Example.xcscheme │ │ └── xcschememanagement.plist ├── AppDelegate.h ├── AppDelegate.m ├── Classes │ ├── AFGowallaAPIClient.h │ ├── AFGowallaAPIClient.m │ ├── Controllers │ │ ├── NearbySpotsController.h │ │ └── NearbySpotsController.m │ └── Models │ │ ├── Spot.h │ │ └── Spot.m ├── Images │ └── placeholder-stamp.png ├── Info.plist ├── Prefix.pch ├── Vendor │ ├── JSONKit │ │ ├── JSONKit.h │ │ └── JSONKit.m │ └── TTT │ │ ├── TTTLocationFormatter.h │ │ └── TTTLocationFormatter.m ├── en.lproj │ ├── Credits.rtf │ └── MainMenu.xib └── main.m ├── README.md └── iOS Example ├── AFNetworking iOS Example.xcodeproj ├── project.pbxproj └── xcuserdata │ └── mattt.xcuserdatad │ └── xcschemes │ ├── AFNetworking iOS Example.xcscheme │ └── xcschememanagement.plist ├── AppDelegate.h ├── AppDelegate.m ├── Classes ├── AFGowallaAPIClient.h ├── AFGowallaAPIClient.m ├── Controllers │ ├── NearbySpotsViewController.h │ └── NearbySpotsViewController.m ├── Models │ ├── Spot.h │ └── Spot.m └── Views │ ├── SpotTableViewCell.h │ └── SpotTableViewCell.m ├── Default.png ├── Default@2x.png ├── Icon.png ├── Icon@2x.png ├── Images ├── placeholder-stamp.png └── placeholder-stamp@2x.png ├── Info.plist ├── Prefix.pch ├── Vendor ├── JSONKit │ ├── JSONKit.h │ └── JSONKit.m └── TTT │ ├── TTTLocationFormatter.h │ └── TTTLocationFormatter.m └── main.m /AFNetworking.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking.podspec -------------------------------------------------------------------------------- /AFNetworking.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AFNetworking/AFHTTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFHTTPClient.h -------------------------------------------------------------------------------- /AFNetworking/AFHTTPClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFHTTPClient.m -------------------------------------------------------------------------------- /AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /AFNetworking/AFHTTPRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFHTTPRequestOperation.m -------------------------------------------------------------------------------- /AFNetworking/AFImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFImageCache.h -------------------------------------------------------------------------------- /AFNetworking/AFImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFImageCache.m -------------------------------------------------------------------------------- /AFNetworking/AFImageRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFImageRequestOperation.h -------------------------------------------------------------------------------- /AFNetworking/AFImageRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFImageRequestOperation.m -------------------------------------------------------------------------------- /AFNetworking/AFJSONRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFJSONRequestOperation.h -------------------------------------------------------------------------------- /AFNetworking/AFJSONRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFJSONRequestOperation.m -------------------------------------------------------------------------------- /AFNetworking/AFJSONUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFJSONUtilities.h -------------------------------------------------------------------------------- /AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /AFNetworking/AFPropertyListRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFPropertyListRequestOperation.h -------------------------------------------------------------------------------- /AFNetworking/AFPropertyListRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFPropertyListRequestOperation.m -------------------------------------------------------------------------------- /AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /AFNetworking/AFURLConnectionOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFURLConnectionOperation.m -------------------------------------------------------------------------------- /AFNetworking/AFXMLRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFXMLRequestOperation.h -------------------------------------------------------------------------------- /AFNetworking/AFXMLRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/AFXMLRequestOperation.m -------------------------------------------------------------------------------- /AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/LICENSE -------------------------------------------------------------------------------- /Mac Example/AFNetworking Mac Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/AFNetworking Mac Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Mac Example/AFNetworking Mac Example.xcodeproj/xcuserdata/mattt.xcuserdatad/xcschemes/AFNetworking Mac Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/AFNetworking Mac Example.xcodeproj/xcuserdata/mattt.xcuserdatad/xcschemes/AFNetworking Mac Example.xcscheme -------------------------------------------------------------------------------- /Mac Example/AFNetworking Mac Example.xcodeproj/xcuserdata/mattt.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/AFNetworking Mac Example.xcodeproj/xcuserdata/mattt.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Mac Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/AppDelegate.h -------------------------------------------------------------------------------- /Mac Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/AppDelegate.m -------------------------------------------------------------------------------- /Mac Example/Classes/AFGowallaAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Classes/AFGowallaAPIClient.h -------------------------------------------------------------------------------- /Mac Example/Classes/AFGowallaAPIClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Classes/AFGowallaAPIClient.m -------------------------------------------------------------------------------- /Mac Example/Classes/Controllers/NearbySpotsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Classes/Controllers/NearbySpotsController.h -------------------------------------------------------------------------------- /Mac Example/Classes/Controllers/NearbySpotsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Classes/Controllers/NearbySpotsController.m -------------------------------------------------------------------------------- /Mac Example/Classes/Models/Spot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Classes/Models/Spot.h -------------------------------------------------------------------------------- /Mac Example/Classes/Models/Spot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Classes/Models/Spot.m -------------------------------------------------------------------------------- /Mac Example/Images/placeholder-stamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Images/placeholder-stamp.png -------------------------------------------------------------------------------- /Mac Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Info.plist -------------------------------------------------------------------------------- /Mac Example/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Prefix.pch -------------------------------------------------------------------------------- /Mac Example/Vendor/JSONKit/JSONKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Vendor/JSONKit/JSONKit.h -------------------------------------------------------------------------------- /Mac Example/Vendor/JSONKit/JSONKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Vendor/JSONKit/JSONKit.m -------------------------------------------------------------------------------- /Mac Example/Vendor/TTT/TTTLocationFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Vendor/TTT/TTTLocationFormatter.h -------------------------------------------------------------------------------- /Mac Example/Vendor/TTT/TTTLocationFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/Vendor/TTT/TTTLocationFormatter.m -------------------------------------------------------------------------------- /Mac Example/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Mac Example/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Mac Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/Mac Example/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/README.md -------------------------------------------------------------------------------- /iOS Example/AFNetworking iOS Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/AFNetworking iOS Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS Example/AFNetworking iOS Example.xcodeproj/xcuserdata/mattt.xcuserdatad/xcschemes/AFNetworking iOS Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/AFNetworking iOS Example.xcodeproj/xcuserdata/mattt.xcuserdatad/xcschemes/AFNetworking iOS Example.xcscheme -------------------------------------------------------------------------------- /iOS Example/AFNetworking iOS Example.xcodeproj/xcuserdata/mattt.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/AFNetworking iOS Example.xcodeproj/xcuserdata/mattt.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iOS Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/AppDelegate.h -------------------------------------------------------------------------------- /iOS Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/AppDelegate.m -------------------------------------------------------------------------------- /iOS Example/Classes/AFGowallaAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Classes/AFGowallaAPIClient.h -------------------------------------------------------------------------------- /iOS Example/Classes/AFGowallaAPIClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Classes/AFGowallaAPIClient.m -------------------------------------------------------------------------------- /iOS Example/Classes/Controllers/NearbySpotsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Classes/Controllers/NearbySpotsViewController.h -------------------------------------------------------------------------------- /iOS Example/Classes/Controllers/NearbySpotsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Classes/Controllers/NearbySpotsViewController.m -------------------------------------------------------------------------------- /iOS Example/Classes/Models/Spot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Classes/Models/Spot.h -------------------------------------------------------------------------------- /iOS Example/Classes/Models/Spot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Classes/Models/Spot.m -------------------------------------------------------------------------------- /iOS Example/Classes/Views/SpotTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Classes/Views/SpotTableViewCell.h -------------------------------------------------------------------------------- /iOS Example/Classes/Views/SpotTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Classes/Views/SpotTableViewCell.m -------------------------------------------------------------------------------- /iOS Example/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Default.png -------------------------------------------------------------------------------- /iOS Example/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Default@2x.png -------------------------------------------------------------------------------- /iOS Example/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Icon.png -------------------------------------------------------------------------------- /iOS Example/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Icon@2x.png -------------------------------------------------------------------------------- /iOS Example/Images/placeholder-stamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Images/placeholder-stamp.png -------------------------------------------------------------------------------- /iOS Example/Images/placeholder-stamp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Images/placeholder-stamp@2x.png -------------------------------------------------------------------------------- /iOS Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Info.plist -------------------------------------------------------------------------------- /iOS Example/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Prefix.pch -------------------------------------------------------------------------------- /iOS Example/Vendor/JSONKit/JSONKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Vendor/JSONKit/JSONKit.h -------------------------------------------------------------------------------- /iOS Example/Vendor/JSONKit/JSONKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Vendor/JSONKit/JSONKit.m -------------------------------------------------------------------------------- /iOS Example/Vendor/TTT/TTTLocationFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Vendor/TTT/TTTLocationFormatter.h -------------------------------------------------------------------------------- /iOS Example/Vendor/TTT/TTTLocationFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/Vendor/TTT/TTTLocationFormatter.m -------------------------------------------------------------------------------- /iOS Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gowalla-archive/AFNetworking/HEAD/iOS Example/main.m --------------------------------------------------------------------------------