Post

Replies

Boosts

Views

Activity

AppStore Review latest experience
I haven't much published new apps to AppStore for a period. But as I have built myself a MacOS app and have used it over a year, so I decided to hire professional designed that maybe there will be others that would like to use it as it was unique tool for professionals. But after a flustrating week with AppSTore Reviewers, seems that I'm paying each year for a service that has no value to anyone. AppStore Reviewrs never read or ignored my messages; Even I had uploded several corrected builds (and obviously changed that build in AppStore Connect, they have ignored it and are still testing the first version uploaded; Even I have provided the webpage, which decsribes app features and how to use those, they have never visited that page and as I later created Youtube video showing show I use it, that video was never playd. Complaining to App Review Board has no effect anymore. They just ignore complaints. At least during my last iOS app submissions, Reviewer constantly comlianed that "Like" button is unresponsive, even I have explained that you can't Like your own posts, especially before those are published. Then Revew Board intervened and I finally got my app published. But this situation now seems to be absurd? Why we are paying this "Developers Fee" to get insulted by Apple Corporation?
1
0
51
4d
iOS App iCloud recovery
I implemented to my app iCloud backup and restore services. Basically App uploads it's document directory files to iCloud using NSURL containerURL = [[NSFileManager defaultManager] URLForUbiquityContainerIdentifier:nil]; and [fileManager copyItemAtURL:fileURL toURL:destinationURL error:&error]; and everything has been OK to upload files. By checking my iCloud account, it has taken the space needed to store those files. However, when I changed my decice, I'm unable to get those files back. At first, files had .icloud extra extension added, but now the function just reports only 5 files from few hunder. The function used to get backup files is: `- (NSArray) getBackupFiles { NSError *error; NSURL *containerURL = [[NSFileManager defaultManager] URLForUbiquityContainerIdentifier:nil]; if (!containerURL) return nil; // NSArray *keysArray = [[NSArray alloc] initWithObjects: nil]; NSArray *resultsArray = [[NSFileManager defaultManager] contentsOfDirectoryAtURL:containerURL includingPropertiesForKeys:nil options:NSDirectoryEnumerationSkipsHiddenFiles error:&error]; if (error) { [self myAlertView:error.localizedDescription]; return nil; } else return resultsArray; } Any ideas, what went wrong?`
0
0
471
Feb ’24