There is no direct access , in control center or settings to turn off Bluetooth and WiFi A mobile data . can You make need ful changes
Explore best practices for creating inclusive apps for users of Apple accessibility features and users from diverse backgrounds.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I have an iPhone XS model since I updated it to iOS 18 after that it started having heating and hanging issues it is shutting down and running by itself a lot
It is very bad of Apple that it lets old phones hang. Because of this, it is very bad for old customers to get their new phones
Topic:
Accessibility & Inclusion
SubTopic:
General
Tags:
IOSurface
External Graphics Processors
iPhone
Hello There,
I setup the applinks in ios app. The associated domain url returning the correct response and in my app the same is been confiqured.
But when the link is called the app is not recognising.
I tried all the possible method but its not working.
Topic:
Accessibility & Inclusion
SubTopic:
General
When i go outside in the sunlight. Brightness becomes high but it goes down slowly and at the high rate of brightness, it is no visible my screen.
Topic:
Accessibility & Inclusion
SubTopic:
General
Is there a way to make other apps' window pinned to float mode?
Is Accessibility API able to do this?
I purchased the apple developer account, and was charged and debited 99$ from mu card, yet my account is still pending. I contacted support by creating a ticket and yet no response until now .
Topic:
Accessibility & Inclusion
SubTopic:
General
Our app:
https://apps.apple.com/it/app/bookapp-business/id1511129368
BookApp Business, does not work in iOS 18
when it starts it opens a white screen
it is developed in Xamarin Forms and we cannot update it
are there any solutions?
tanks for support
Alex
Topic:
Accessibility & Inclusion
SubTopic:
General
in ios17 you could "cut" a spam event and it would remove the series...in ios18 when you "cut" the series it removes but pop right back
Having issues with the screen will not wake when a notification comes in. it was make sound and vibrate but screen does not wake up. Also, unable to change wallpaper on lock screen as well. Anyone else experiencing this?
Topic:
Accessibility & Inclusion
SubTopic:
General
I am currently on ios 18.1 beta 2 but I cannot update to newer beta that got released. It said unable to check for updates and on beta update it doesn’t show any beta for me to select
I was using a macOS 15.0 beta. and I tried to update to macOS 15.1. I clicked the update and entered my password but then it just stuck on loading forever. How can I fix that?
i'm trying to use tthis feature with voice over, but each time i try it uses my system voice.
how can i fix this.
i sent a report to apple.
my id is FB15265988
Topic:
Accessibility & Inclusion
SubTopic:
General
I’m writing to understand how taxes are applied to our subscription revenue and to clarify a potential issue we’re facing.
For a ₹299 subscription:
Apple deducts a 30% commission, leaving us with ₹209.30.
After that, an additional tax of approximately 18% (₹36.11) is deducted by Apple, which reduces the amount further.
When we receive this ₹173.19 in our bank, we are required to pay 18% GST again on this amount in India.
This appears to result in us paying tax twice. Could you clarify why 18% tax is deducted by Apple, and if we are not required to pay it again, where can we see this adjustment on the GST portal?
I want to turn on the grayscale mode of iphone from ios app.
Is it possible to do ?
Topic:
Accessibility & Inclusion
SubTopic:
General
I've just updated to iOS 18.1 Beta 5 update and I'm not able to see FaceTime audio/ video calls in the phone call log at all as it's like no where. And even in FaceTime there is no summary like call duration or recent calls log, just last call listed.
Please resolve this issue and have FaceTime calls logs to be shown in the phone call logs as that was perfect and categorised.
Steps:
Connect to Mac through ssh and execute “screencapture abc.jpg”
It shows the attached popup, though we have added “ssh-keygen-wrapper” to control the computer in Privacy and Security->Accessibility and in Privacy and Security->Screen and System Audio recording in System Settings
Ideally, we wouldn’t like to see this popup as we have given enough permissions to take the screenshot as mentioned above, same works fine in Mac14 and below versions
Even upon clicking “Allow for one week”, new session of SSH will have this popup again.
Topic:
Accessibility & Inclusion
SubTopic:
General
I am an iphone 11 user and i got iphone 16 when iphone 16 was launched .iphone 16 ios 18.1 beta version software updated i got same battery life as iphone 11
Topic:
Accessibility & Inclusion
SubTopic:
General
I'm trying to include Apple's Personal Voice feature in an app I'm working on, but I want to use a button or toggle to request access, rather than firing the request on first launch. The problem is that, if AVSpeechSynthesizer is used during the same session, before Personal Voice is authorized, the app has to be restarted to use the feature.
Here is a basic example that demonstrates the issue on my iPhone (running 18.1 beta, but the issue was present at least in 18.0, maybe before):
import AVFoundation
import SwiftUI
struct TestView: View {
let synthesizer = AVSpeechSynthesizer()
@State private var personalVoices: [AVSpeechSynthesisVoice] = []
var body: some View {
VStack(spacing: 100) {
Text("Personal Voices Available: \(personalVoices.count)")
Button {
speakUtterance(string: "Hello, world!")
} label: {
Image(systemName: "hand.wave.fill")
.font(.system(size: 100))
}
Button("Fetch Personal Voices") {
Task { await fetchPersonalVoices() }
}
}
}
func fetchPersonalVoices() async {
AVSpeechSynthesizer.requestPersonalVoiceAuthorization() { status in
if status == .authorized {
personalVoices = AVSpeechSynthesisVoice.speechVoices().filter { $0.voiceTraits.contains(.isPersonalVoice) }
}
}
}
func speakUtterance(string: String) {
let utterance = AVSpeechUtterance(string: string)
if let voice = personalVoices.first {
utterance.voice = voice
} else {
utterance.voice = AVSpeechSynthesisVoice(language: Locale.preferredLanguages[0])
}
synthesizer.speak(utterance)
}
}
If you tap the hand symbol first (before authorizing Personal Voice), you'll probably notice that the Personal Voices Available number never increases. If you authorize Personal Voice before tapping the hand symbol, it should speak using your Personal Voice as expected.
The example code is mostly taken directly from this WWDC23 video (Personal Voice info begins around the 10-minute mark).
Does anyone have any idea what could be causing this?
Note: Personal Voice can't be tested in Simulator. The code will need to be run on a physical device that has Personal Voice set up, to test.
So I got the iPhone 15 I also have the beta update. I’m curious as to whether i will be able to get apple intelligence
I am trying to get a Notification if Guided access is enabled or disabled on the VisionPro.
For doing so you would normally just call:
NotificationCenter.default.addObserver(forName: UIAccessibility.guidedAccessStatusDidChangeNotification, object: nil, queue: .main){ noti in
print("guided access did change")
}
and this works fine on iOS devices.
But running the exact same code in Vision os Results in not getting a notification at all, even though Guided Access gets enabled or Disabled.
For testing i ran a simple default app, that works perfectly on both os types.
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.onAppear{
print("is appeairng")
NotificationCenter.default.addObserver(forName: UIAccessibility.guidedAccessStatusDidChangeNotification, object: nil, queue: .main){_ in
print("guided access did change")
}
}
.padding()
}
}
But as said it prints "guided access did change on iOS" but not on the Vision Pro.