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.
Will Kinvey rewrite KCSlinkedAppdataStore 's saveObject:withCompletionBlock:withProgressBlock: ?
Y
Yonghui Xiao
started a topic
almost 9 years ago
I hope the function KCSlinkedAppdataStore 's saveObject:withCompletionBlock:withProgressBlock: can be modified to saveObject:withOptions:withCompletionBlock:withProgressBlock: so that we can set an uploaded image to be public, which should be easy for Kinvey to achieve.
Otherwise, programmers have to do a lot of stuff on file manipulations, like uploading, orginazing and downloading, to work on image.
Yes, the next major version of the library will have better tools for manipulating linked file metadata. In the meantime the workarounds are that onerous: just use KCSFileStore to save the image as public, and use an object property to save that file's id. You'll see better performance anyway when you download the object, because you'll have access to the data right away, rather than waiting for an image to download at the same time.
Yonghui Xiao
Otherwise, programmers have to do a lot of stuff on file manipulations, like uploading, orginazing and downloading, to work on image.
Thanks.