You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if its due to Swift 1.2 however in step 12 the below code results in "Cannot assign to the result of this expression" rev["check"] = !wasChecked
I believe rev.properties["check"] = !wasChecked is either what was meant to be, or now needs to be.
Also in step 13, when properties is declared it needs to be explicitly declared as a Dictionary or by default its created as NSDictionary and requires casting when passed into doc.putProperties
The text was updated successfully, but these errors were encountered:
I'm not sure if its due to Swift 1.2 however in step 12 the below code results in "Cannot assign to the result of this expression"
rev["check"] = !wasChecked
I believe
rev.properties["check"] = !wasChecked
is either what was meant to be, or now needs to be.Also in step 13, when properties is declared it needs to be explicitly declared as a Dictionary or by default its created as NSDictionary and requires casting when passed into
doc.putProperties
The text was updated successfully, but these errors were encountered: