Hi Community:
I want to know (if someone knows) why content filters are only available for:
Supervised devices
Apps with Screen time, but only for children.
Is that make any sense while in Mac is supervision is not needed?
Why adults cannot decide to use a built in content filter instead of using screen time pre-filter by them selves?
Are they no conscious about what are they doing?
Are there any UX question to not open this powerful tool to improve an iOS user experience guided by third parties?
Thanks in advance.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hello:
I was reading about Mail Privacy Protection because a customer issue case, and how it don't work with VPNs. The final user sees all the time a message on the email top, and then the final user claims to the vpn owner.
Which are the hostnames to set in the VPN as whitelisted to remove the message from there?
Thanks in advance
Hi community:
When I try to access subscription settings, after filling in my sandbox user's password, a message "cannot connect" appears, just like below. Does someone know about a workaround to cancel or reset the subscription from the iPhone?
Thanks in advance
Hi:
When I type on spotlight the name of my app, the App Store section does not show my app to download, unless I write "myAppname app".
Also, in the simulator, if I put the app name and keep pressing the option it shows the app, but no in other cases.
Any ideas about why it is?
Thanks in advance
I don't know if the page was shut down, or it's temporary unavailable
https://search.developer.apple.com/appsearch-validation-tool
Hi:
I'm wondering about what means values s,i from cert object inside the property NSErrorPeerCertificateChainKey and NSErrorPeerCertificateChainKey in an SSLError:
NSErrorPeerCertificateChainKey=( "<cert(0x1029c9e00) s: site.com i: Company Services>"
I suppose that "i" is the certificate's issuer and "s" is the site, but something is strange here.
I make a request to example.com and sometimes example.com does not appear on the certificate chain ... appearing Other sites and issuers not related to the certificate that example.com could have.
I think that it is the cause of the error, but if you could explain to me which could be the cause of this strange situation would be nice.
Thanks in advance
Hi:
I want to know how to schedule a local notification in tvOS and when you tap it, open the app.
I was reading the documentation: https://developer.apple.com/documentation/usernotifications/unnotificationcontent
And I don't know why the title and body, for example, are unavailable for tvOS.
Any help is welcome.
Thanks in advance.
Hi community:
I was reading about how to get featured on the App Store home, and I saw that there's a form.
Must be filled with the "account holder" account, or whichever is okay.
Are there any tips, about how to fill it to get featured?
Thanks in advance
Hi
I want to use the new iOS 16 Screen time API to show a block page over Safari and Chrome when the user enters an "adult-content" page like a gun store, allowing it to continue searching on the internet if the user wants.
Any tips on how to do this?
Thanks in advance
Hi:
I'm trying to get the code coverage from a workflow build.
I have a workflow with 2 actions (action1 and action2 in the rest of the text), both are tests (one unit and one UI test).
When an action runs the post-xcodebuild script, the artifacts are not archived as I can see in the explanation:
https://developer.apple.com/documentation/xcode/writing-custom-build-scripts
Even, each action ends at a different time.
How can I get programmatically the xcresults in an automated way? (action1 and action2 have different xcresults). I don't want to use fastlane or build up any server.
Also, When Does run a scheme test post-action? After the post-Xcode build script run or after the archive of results?
Is there any way in which the GitHub Xcode app generates an event in GitHub when all action archives end to retrieve the code coverage or the results?
Also, I can't see the Xcode cloud code coverage sum in an Xcode window, How can I see it (The whole coverage action1 test result + action2 test result)
Thanks in advance
Hi:
Is there any way to know if the user has screen time enabled?
Thanks in advance
Hi community:
I'm trying to discover how the dnssec api works, but I cannot get a sample that works with it.
Maybe I'm wrong with the requirements; if it is please, clarify it to me.
So what I understood.
All DNS zones (which respond to TLS listed here https://manage.whois.com/kb/answer/2998) have a way to say, hey I'm who I am.
So without any extra configuration, we can use the new API.
Is that right?
So the code that I did, see the next code
let urlSession = URLSession.init(configuration: .ephemeral)
if #available(iOS 16.0, *) {
urlSession.configuration.requiresDNSSECValidation = true
}
var request = URLRequest(url: URL(string: "https://www.apple.com")!)
if #available(iOS 16.1, *) {
request.requiresDNSSECValidation = true
}
cancellable = urlSession
.dataTaskPublisher(for: request)
.retryWithDelay(retries: 2, delay: 2, scheduler: DispatchQueue.global(qos: .background))
.sink(receiveCompletion: { result in
if case let .failure(error) = result {
print("Error \(error)")
}
}, receiveValue: { (data: Data, response: URLResponse) in
print("It Works")
Result:
Task finished with error [-1001] Error Domain=NSURLErrorDomain Code=-1001, UserInfo={_kCFStreamErrorCodeKey=-2102, NSUnderlyingError=0x600003d86130 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 "(null)" UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDataTask <040AB9E7-EFCB-4072-8357-E0149769BB9D>.<2>, _NSURLErrorRelatedURLSessionTaskErrorKey=(```
"LocalDataTask <040AB9E7-EFCB-4072-8357-E0149769BB9D>.<2>"
), NSErrorFailingURLStringKey=https://apple.com/, NSErrorFailingURLKey=https://apple.com/, _kCFStreamErrorDomainKey=4}
The DNS I'm using is 8.8.8.8. Do you know any other DNS server that supports DNSSEC?
If I remove requiresDNSSECValidation from request it works.
Also, it's curious that even failing the receiveCompletion is never called. But if I use the dataTask` with completion it's called with the error.
Thanks for the clarifications.
Hi community.
I was looking for a way to make word segmentation of a string without delimiters and spaces. Apple's Natural language framework does not provide this (I think is strange).
I want to achieve something like this:
Input: "makesenseofthis"
Output: ["make", "sense", "of", "this"]
Any third party to do it? Maybe is there any Apple API?
Thanks in advance
Hi:
Is there anyway to set a specific PrivacyContext to a concrete (no shared) URLSession?
Thanks in advance
Hi community:
Thanks for readme. I want to achieve get an adverb of frequency from a time interval or date component. So if I have something that measure one week, I want to get "weekly" as result, the same for 2 weeks "bi-weekly", month "monthly" and so on.
Is there any foundation API to get it?
Thanks in advance