ebi
ebi

Reputation: 4902

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
 ]

Upvotes: 5

Views: 2936

Answers (1)

Wain
Wain

Reputation: 119021

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

Upvotes: 5

Related Questions