Reputation: 1412
I have iOS calendar app and i need to sync it with google calendar.
I need sync as the following steps: 1-Full sync with google calendar one time only. 2-Incremental sync with google every 1 min.
I read google calendar documentation and google support incremental sync by pass "syncToken" parameter.
The problem: "syncToken" does NOT available on objective-c library.
Anybody have same issue or ideas what's happening?
Upvotes: 0
Views: 610
Reputation: 12673
The GTLQueryCalendar class makes syncToken
available as a dynamic property:
Upvotes: 1