Changeset 631
- Timestamp:
- 01/11/10 19:45:59 (2 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
apps/iphone/my.tel/trunk/Classes/API Classes/JsonConnection.m
r626 r631 200 200 } 201 201 202 - (void)connectionDidFinishLoading:(NSURLConnection*)connection { 203 #ifdef JSONDEBUG 204 NSLog(@"Response payload: %@", responsePayload); 202 - (void)connectionDidFinishLoading:(NSURLConnection *)connection { 203 #ifdef JSONDEBUG 204 NSLog(@"Connection is: %@", [connection description]); 205 // NSLog(@"Response payload: %@", responsePayload); 205 206 #endif 206 207 [self parsePayload]; … … 226 227 } 227 228 #endif 228 [theDelegate performSelector:actionSel withObject:parsedJSON]; 229 if (theDelegate && [theDelegate respondsToSelector:actionSel]) { 230 [theDelegate performSelector:actionSel withObject:parsedJSON]; 231 } 229 232 } 230 233








