Pergunta

The JSON response which I get from the API will be something like this

( 
{
   key11:value11,
   key12:value12,
},
{
   key21:value21,
   key22:value22,
}
)

So, when I subclass MMRecord and do this

+ (NSString *)keyPathForResponseObject {
    return ___;
}

What should I return from here, @"" or @"default" or something else? I searched the documentation, it says

Default is whatever is returned by this method on the MMRecord subclass.

What does that mean?

I'm pretty new to iOS. Help me out! I'm using MMRecord-1.3.0

Foi útil?

Solução

+ (NSString *)keyPathForResponseObject {
    return nil; //To capture the entire response
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top