Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 GDataServiceGoogleCalendar 获取 iOS 应用程序的事件。
有没有办法在重新获取事件之前检查日历是否有更新。我正在尝试减少数据传输,如果谷歌日历上没有更改,我不希望应用程序获取所有数据。
谢谢
沙尼
从 CalendarService 中,为要与之同步的特定提要执行 getFeed()。Feed 继承自 com.google.gdata.data.Source,它具有 getUpdated 和 setUpdated 方法。您必须在应用程序中跟踪自己的时间戳;您应该能够比较这两次;如果您的日历的最后一次同步时间与您的应用程序设置的此值相同,则没有新条目可提取。