As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
I am using the below code to initialize for store but when I am trying to save in a offline mode, it is saying 'the connection timed out' or ' the network is not reachable'. How can I store it locally when the network is offline.
Yes- the latest release has the fix. http://devcenter.kinvey.com/ios/timeline
S
Sohail Hussain
said
about 9 years ago
Hi Caroline,
Has this issue been fixed? Can you please tell me in which version I can get this issue resolved?
C
Caroline
said
about 9 years ago
Hi Sohail-- I've noticed a few topics in the forum now that are all saying that there's an offline storage problem, so we're diving in on this issue and I'll let you know when we have an update.
Sohail Hussain
KCSAppdataStore *store = [KCSAppdataStore storeWithOptions:@{KCSStoreKeyCollectionName : @"testObjects"
,KCSStoreKeyCollectionTemplateClass : [TestObject class]
,KCSStoreKeyCachePolicy : @(KCSCachePolicyNone)
,KCSStoreKeyOfflineSaveDelegate : self
,KCSStoreKeyUniqueOfflineSaveIdentifier : @"ViewController"}];
[store saveObject:testObject withCompletionBlock:^(NSArray *objectsOrNil, NSError *errorOrNil)
So far what I have read in the documentation is KCSStoreKeyUniqueOfflineSaveIdentifier mandatory and I have just provided a random name here.