Suppose I received a Privacy Manifest from Apple in the process of reviewing the app.
I used "UserDefaults" and "File timestamp APIs" among the APIs, and I didn't add Privacymanifest. And there is nothing in the mail other than "UserDefaults" and "File timestamp APIs".
And so is the code.
If I remove all the code related to "UserDefaults" and "File timestamp APIs" from the library in this situation, is it okay not to add "Privacy Manifest" from the library as well??
The library can be FrameWork or Static Library.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
iOS 17.5.1 Xcode WebKit Crash
Hello, I have two iPhone devices that I have.
These devices are iOS17.5.1, and all Wk related codes cause Crash.
Crash occurs when Xcode Build is complete and the app is running. If you run without connecting to Xcode, Crash does not occur.
Error: Thread 1: EXC_BREAKPOINT (code=1, subcode=0x19e88fa18)
Xcode 15.4,
MacBook Pro 14 Sonoma 14.5
There was no issue with iOS 16.5.
WKWebsiteDataStore.default()
.fetchDataRecords(ofTypes: WKWebsiteDataStore.allWebsiteDataTypes()) { records in
records
.forEach {
WKWebsiteDataStore.default()
.removeData(ofTypes: $0.dataTypes,
for: [$0],
completionHandler: {})
}
}
let webConfiguration = WKWebViewConfiguration()webConfiguration.preferences.javaScriptCanOpenWindowsAutomatically = true
Hello, I'm trying to create an app.
I'm thinking of an app that can make coin trading convenient.
I'm not a cryptocurrency exchange, I'm just trying to use the API provided by the exchange.
Do these app violate Apple review guidelines??
As for the app function
The user enters the API Key of the exchange.
I want to make it easy to provide users with various and convenient transactions through the API Key input.
Does the app using the API provided by the Coin Exchange pass the App Store review?
I don't see any related apps.. Was it all rejected in the App Store review??
Does the app I think violate the policy below?
3.1.5 Cryptocurrencies:
(iii) Exchanges: Apps may facilitate transactions or transmissions of cryptocurrency on an approved exchange, provided they are offered only in countries or regions where the app has appropriate licensing and permissions to provide a cryptocurrency exchange.
(iv) Initial Coin Offerings: Apps facilitating Initial Coin Offerings (“ICOs”), cryptocurrency futures trading, and other crypto-securities or quasi-securities trading must come from established banks, securities firms, futures commission merchants (“FCM”), or other approved financial institutions and must comply with all applicable law.
Hello.
I'm going to create an app that supports purchase records.
SwiftData was used to implement storage, backup, and restoration functions at once.
One question is whether paging is necessary.
When you receive data from a server, you usually implement paging to send and receive data efficiently.
In the case of Realm, I know that it uses Lazy data, so I know that there is no need for paging.
What about SwiftData? Can the number of data affect performance??
I'm using SwiftData, and I'm using iCloud's CloudKit feature to back up my data.
The problem here is that once you start backing up your data, you can't erase it completely.
Even if the user adds 4 data and erases 4 again, I'm using about 2.5kb.
I don't know how the user using the app will accept this.
I'm trying to provide the user with the ability to erase data at once, what should I do??
Topic:
App & System Services
SubTopic:
iCloud & Data
Tags:
CloudKit
Cloud and Local Storage
iCloud Drive
SwiftData