Commit Graph

61 Commits

Author SHA1 Message Date
Draveness
c27b46c87d Add leading whitespace to urls 2016-03-14 10:17:27 +08:00
Draveness
d0b1db20d8 Add whitespace between url and ')' to prevent Xcode misunderstanding 2016-03-14 10:12:20 +08:00
Kevin Harwood
5d73b00640 Bumping copyright to 2016 2016-01-05 09:22:42 -06:00
Kevin Harwood
2adeda5d44 Added a deprecated flag to older methods in the API 2015-12-04 11:18:22 -06:00
Cédric Luthi
dc25d2253f Split the iOS and OS X AppDelegate classes
The only thing they share is their name.
2015-12-04 09:38:56 +01:00
Kevin Harwood
7117b5d594 Converted example to use frameworks 2015-10-16 10:19:22 -05:00
Kevin Harwood
01f6aed22a - Removed support for NSURLConnection based API's
- Simplified example project to include all targets
- Added support for tvOS
2015-10-02 14:09:47 -05:00
Brian Nickel
c1844f60e3 Added Today extension to iOS example app.
This demonstrates that APIs not available to an extension can compile successfully if they are marked with NS_EXTENSION_UNAVAILABLE_IOS.
2015-07-27 10:49:55 -07:00
Matthew Shedlick
a04a4ff640 Minor changes to support modern Objective-C syntax. 2015-04-27 22:39:26 -04:00
Mattt Thompson
e3a462b997 Removing unnecessary refresh control property 2015-01-18 09:09:20 -08:00
Fan Liu
da12e476b4 Replace sizeWithFont with boundingRectWithSize, and remove the #pragma clang diagnostic ignored "-Wdeprecated-declarations" 2015-01-01 16:57:13 +08:00
Mattt Thompson
d18c49ee89 Minor refactoring 2014-11-29 10:18:41 -08:00
Steven Hepting
bbff3bbaf9 Fix iOS test app detail text label. 2014-11-25 16:44:25 -08:00
Mattt Thompson
00058e75b2 Fix iOS Example 2014-05-12 07:39:19 -07:00
Mattt Thompson
154fee8afe Fixing image loading for the Mac OS X example app 2014-05-11 15:50:40 -04:00
Mattt Thompson
12ef83b00e Changing security policy to none, while new example endpoint is considered 2014-05-11 15:39:41 -04:00
Cédric Luthi
214ddff426 Update the App.net API base URL 2014-04-11 16:52:05 +02:00
Mattt Thompson
f626ced68a Merge branch 'master' of github.com:AFNetworking/AFNetworking 2014-02-24 15:16:28 -08:00
Mattt Thompson
404d21aed1 Merge pull request #1784 from jpsim/master
Enabled certificate pinning in demo project
2014-02-24 14:14:25 -08:00
Bruno Tortato Furtado
804fca75ae [Issue #1772] Updates to 64 bit architecture
Signed-off-by: Mattt Thompson <m@mattt.me>
2014-02-24 13:57:51 -08:00
Mattt Thompson
9ff1697c37 Replacing navigation item refresh control with pull-to-refresh 2014-02-11 10:06:52 -08:00
JP Simard
ed720a2c51 Enabled certificate pinning in demo project 2014-01-27 17:06:07 -05:00
Nick Banks
810ef612c4 Fixed compiler warnings for upcoming version of Xcode 2014-01-27 16:17:18 +00:00
Mattt Thompson
7ca435c800 Removing security policy for ADN manager 2014-01-16 09:58:10 -08:00
Kevin Harwood
4350a01571 Updated ssl pinning mode to have default pinned certificates by default 2013-09-29 17:25:34 -05:00
Mattt Thompson
09658b352a Enabling and fixing extensive compiler warnings 2013-09-26 07:11:22 -07:00
Mattt Thompson
9e5dd5ee8a Adding __unused declarations to fix warnings 2013-09-26 06:25:58 -07:00
Mattt Thompson
9a40c0dc0f Merge branch 2.0 into master 2013-09-25 16:31:49 -07:00
Mattt Thompson
b5d003451d Setting default SSL Pinning Mode in example to None only if host name does not match 2013-07-15 09:43:27 -07:00
Mattt Thompson
a4ee25f029 Disabling SSL Pinning mode for Mac example 2013-06-19 08:44:57 -07:00
Kevin Harwood
3c6bec4207 Added runtime check to disable pinning in the example
Signed-off-by: Mattt Thompson <m@mattt.me>
2013-04-16 10:31:41 +03:00
Kevin Harwood
06a9c63ead Attempting to add the pinning mode as an example. 2013-04-06 11:04:02 -05:00
Mattt Thompson
321a2af79d Fixing warnings caused by implicit property attributes 2013-02-04 00:20:56 +01:00
ijohn
8f898addf2 Update Example/Classes/Models/Post.m
Sorry the previous commit left 1 crucial line :(
2012-10-24 13:17:16 +07:00
ijohn
3a80dbc795 Update Example/Classes/Models/Post.m
Adapt to app.net global stream response change
2012-10-24 13:09:54 +07:00
Mattt Thompson
a6870bd366 Minor reorganization & cleanup 2012-10-14 10:07:13 -07:00
Mattt Thompson
424c026f0c Twitter shut off its unauthorized access to the public timeline; switching example over to the App.net global stream. 2012-10-10 20:08:34 -07:00
Mattt Thompson
89f9094cea Fixing warnings detected by -Weverything 2012-10-01 10:38:46 -07:00
Mattt Thompson
ff37bb59f8 Merge branch 'master' into 1.0RC2
Conflicts:
	AFNetworking/AFHTTPClient.m
	AFNetworking/AFHTTPRequestOperation.m
	AFNetworking/AFJSONRequestOperation.m
	AFNetworking/AFNetworkActivityIndicatorManager.m
	AFNetworking/AFURLConnectionOperation.h
2012-09-14 10:30:25 -07:00
Mattt Thompson
3d6fcc35c9 Moving error alert logic from models to controllers 2012-08-11 11:16:55 -04:00
Steven Fisher
5c4c94081b Fixed incomplete implementation warning.
sharedProfileImageRequestOperationQueue is declared in interface extension, but only implemented on Mac OS X. This causes an incomplete implementation warning. Added same #if around interface as surrounds impelmentation.

This only affects sample code.
2012-07-23 17:19:17 -07:00
Steven Fisher
25186f8ebf Very minor security fix.
`informativeTextWithFormat` interprets its string as a format. `[error localizedDescription]` could contain string formatting specifiers.

Fixes to use @"%@", [error localizedDescription] instead.

Spotted via compiler warning.
2012-07-23 11:11:29 -07:00
Mattt Thompson
f1b3101a63 First pass at converting to ARC 2012-06-26 09:14:52 -07:00
Mattt Thompson
b420c181ed Adding compiler directive to ignore User +sharedProfileImageRequestOperationQueue in iOS 2012-06-26 08:53:15 -07:00
Mattt Thompson
b648e33481 Reload table view on image load 2012-06-19 14:40:11 -07:00
Mattt Thompson
ec2cee42d2 Adding profileImage property to bind image views to dynamically-loaded content 2012-06-19 14:30:49 -07:00
Mattt Thompson
eaa9059cd2 Stashing working implementation 2012-06-19 12:50:26 -07:00
Mattt Thompson
efdaedc541 Adding Mac example project
Renaming iOS example project

Adding AFNetworking to Mac project using preprocessor macros to resolve UIKit dependencies, and setting compiler flags accordingly.
2011-09-23 12:19:40 -05:00
Mattt Thompson
ba4470ed13 Use imperial system based on current locale 2011-09-22 11:58:35 -05:00
Mattt Thompson
95ca172d9d Fixing API call for spots in the example app 2011-09-22 10:25:07 -05:00