Cleanup invalid corss references and tighten docs on RKPathMatcher

This commit is contained in:
Blake Watters
2012-09-13 07:08:44 -04:00
parent dfd10c4510
commit f457f16dca

View File

@@ -22,14 +22,9 @@
@class SOCPattern;
/**
This class performs pattern matching and parameter parsing of strings, typically paths.
It provides much of the necessary tools to map a given path to local objects (the inverse
of RKRouter's function). This makes it easier to implement RKManagedObjectCache, and generate fetched
requests from a given path. There are two means of instantiating and using a matcher object
in order to provide more flexibility in implementations, and to improve efficiency by eliminating
repetitive and costly pattern initializations.
The `RKPathMatcher` class performs pattern matching and parameter parsing of strings, typically representing the path portion of an `NSURL` object. It provides much of the necessary tools to map a given path to local objects (the inverse of RKRouter's function). This makes it easier to implement the `RKManagedObjectCaching` protocol and generate `NSFetchRequest` objects from a given path. There are two means of instantiating and using a matcher object in order to provide more flexibility in implementations, and to improve efficiency by eliminating repetitive and costly pattern initializations.
@see RKManagedObjectCache
@see RKManagedObjectCaching
@see RKMakePathWithObject
@see RKRouter
*/