Brennan Casey
Brennan Casey

Reputation: 897

Can you save an array of GeoPoints using Parse?

I would like to store geoPoints in an array and I know parse has a datatype of geoPoint. Is it possible to create an array of just those geoPoints? Thanks. FYI: This is an iOS app but it really shouldn't matter.

Upvotes: 1

Views: 299

Answers (1)

Jake T.
Jake T.

Reputation: 4378

Yes. I'd create the array column on your dashboard, then inside your iOS app you use [ (yourPfObject) addObject:(objectYoureAdding) forKey:(keyOfArray) ]; and objects can be of any type.

Upvotes: 2

Related Questions