Unable to retrieve updatedAt or createdAt values from Parse objects

后端 未结 3 935
感动是毒
感动是毒 2021-02-07 16:11

I\'m an experienced Android developer trying to get a prototype iOS app running using the Parse service and sdk (https://www.parse.com/).

It\'s great, and i can get all

3条回答
  •  说谎
    说谎 (楼主)
    2021-02-07 16:30

    I just had the same problem, don't access it using objectForKey, just access it directly via the createdAt property.

    in Swift

    object.createdAt

    As stated in the docs, the keys:

    This do not include createdAt, updatedAt, authData, or objectId. It does include things like username and ACL.

提交回复
热议问题