<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| /*! | |
| *\brief Method to serialize arrays | |
| * This method serialized elements from an array an fill the space with the urlcode for querys | |
| *\param array an array of nsstrings to be serialized | |
| *\return NSString* a string with all the elements on the array serialized | |
| */ | |
| + (NSString*)stringSerializerForQuery:(NSArray*)array{ | |
| NSMutableString *returnString; | |
| /*! | |
| *\brief Method to get an array of index path from a NSRange | |
| * This method can be used to get an array of indexPath for table updates, | |
| * just one range and section each time. | |
| *\param range The range you need for the indexPath | |
| *\param the section you want for the indexPath | |
| *\return A Mutable array of NSIndexPath | |
| */ | |
| + (NSMutableArray*)arrayOfIndexPathFromRange:(NSRange)range section:(NSUInteger)section{ |