Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Restkit mapping for array with no keypath

How can I create an object mapping for a JSON response like this, which is just an array of integers:

 [
 565195,
 565309,
 565261,
 565515,
 565292,
 565281,
 566346,
 566347,
 575241,
 597230,
 597231,
 597227,
 597228,
 597229,
 597232,
 575248
 ]
like image 421
ebi Avatar asked Aug 01 '13 20:08

ebi


1 Answers

You need to perform a nil keypath mapping. Check the 'Mapping Values without Key Paths' section here.

like image 115
Wain Avatar answered Sep 16 '22 23:09

Wain