¡@

Home 

2014/10/15 ¤U¤È 10:12:49

iphone Programming Glossary: postobject

RestKit GET query parameters

http://stackoverflow.com/questions/11227255/restkit-get-query-parameters

for a while now and up until this point I only posted serialized objects to my server RKObjectManager sharedManager postObject serializedObject usingBlock ^ RKObjectLoader loader loader.delegate self loader.objectMapping responseMapping loader.serializationMIMEType.. a router for RKRequestMethodGET instead of RKRequestMethodPOST make the request using getObject usingBlock instead of postObject usingBlock I soon found out this is not the way to do it so after searching the available resources RestKit Wiki RestKit.. but I do not see the point since I can wrap the parameters in the serialized object that is being sent with the method postObject usingBlock. Thanks. LATER EDIT Regarding the answer to my second question I've been setting the targetObject to nil in the..

How to POST an object to rails using RestKit?

http://stackoverflow.com/questions/8409115/how-to-post-an-object-to-rails-using-restkit

void createList NSString listName List newList List object newList.title listName RKObjectManager sharedManager postObject newList delegate self I call this method with the name I want the new list to have. This method is called but I get this..