Numerous cleanups to the DiscussionBoard example. Need to finish working through cleanups to the authentication process and polish off documentation. Should be ready for merge tomorrow night.

This commit is contained in:
Blake Watters
2011-01-18 23:25:19 -05:00
parent 7e2f49e814
commit 8f863b4c50
18 changed files with 305 additions and 114 deletions

View File

@@ -172,6 +172,11 @@ typedef enum RKRequestMethod {
*/
- (BOOL)isLoaded;
/**
* Returns YES when the request was sent to the specified resource path
*/
- (BOOL)wasSentToResourcePath:(NSString*)resourcePath;
@end
/**

View File

@@ -272,4 +272,8 @@
return resourcePath;
}
- (BOOL)wasSentToResourcePath:(NSString*)resourcePath {
return [[self resourcePath] isEqualToString:resourcePath];
}
@end