after installing the latest iOS 18 developer beta on my iPhone SE 3.
VoiceOver keeps saying unpronounceable when I swipe through applications or doing anything else on my phone.
Please fix this Voiceover bug as soon as possible?
I submitted the same bug report through the Feedback Assistant app and there is no response from Apple when the issue will be resolved.
Explore best practices for creating inclusive apps for users of Apple accessibility features and users from diverse backgrounds.
Post
Replies
Boosts
Views
Activity
So I was checking iOS 18 new Eye-Tracking Feature. And wonder if there is a way to check if it's on-off on Swift side because my app is using Camera, and it's conflict with the Eye-Tracking it self which also using device's Camera.
I want to capture windows of other applications for sharing during the use of SharePlay in Vision Pro. Can I use screencapturekit or is there another method?
My store requires customers to provide Identification if they are using credit card because of the amount of stolen cards in this area. How can I ensure customers aren’t using a stolen card when paying through Apple Pay? Why doesn’t Apple Pay display the cardholders name on the card shown on the screen so that we can confirm it with an ID?
I am using iphone 15pro, purchased in November 2023, had updated ios 18 beta version and since then my battery capacity is reducing very fast, in 1 week I had seen the drop of 6%.
I don't have time to go in the queue for the service, please suggest.
PLEASE HELP ME HOW TO RESOLVE
AATIR
[Personal Information Edited by Moderator]
For the 5G Network Slicing Traffic Category defined by the IOS 17:
https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_networking_slicing_trafficcategory?changes=latest_major&language=ob_8
May I know more details, better with providing me the reference link,
on the following questions,
How this ID is being handled by the network?
What’s the flow & impact of this ID when registering the 5G SA network?
Any profile is being downloaded from the network to the handheld device to control the slice??
That ID is carry along the way up to the BBU/Cell sites and the ID is identified by the cell sites for specific handling of that slice?
When I try to delete items from my list stored with swift data, it instantly makes crash my app with this error message: SwiftData/BackingData.swift:482: Fatal error: Never access a full future backing data - PersistentIdentifier(id: SwiftData.PersistentIdentifier.ID(url: x-coredata://03DEFFA9-87EF-4E13-9448-946D9EBC17B6/Exercise/p8), implementation: SwiftData.PersistentIdentifierImplementation) with Optional(0252D555-649A-45B2-954C-7DD62A6DBAE4)
import SwiftUI
import SwiftData
struct WorkoutsView: View {
@Environment(\.modelContext) var modelContext
@Query(sort: [
SortDescriptor(\Workout.name),
SortDescriptor(\Workout.difficulty),
SortDescriptor(\Workout.duration)
]) var workouts: [Workout]
@State private var isEditing = false
@State private var showingAddScreen = false
var body: some View {
NavigationStack {
List {
ForEach(workouts) { workout in
//design purpose code
}
.onDelete(perform: deleteWorkouts)
}
.navigationTitle("Workouts")
.toolbar {
ToolbarItem(placement: .topBarLeading) {
EditButton()
}
ToolbarItem(placement: .topBarTrailing) {
Button(action: {
showingAddScreen = true
}) {
Image(systemName: "plus")
}
}
}
.sheet(isPresented: $showingAddScreen) {
AddWorkoutView()
}
}
}
func deleteWorkouts(at offsets: IndexSet) {
for offset in offsets {
let workout = workouts[offset]
modelContext.delete(workout)
}
}
}
I had a post in the forums explaining this problem and its solution but someone more concerned with which version of the software was used than whether the post addressed a problem removed it. So I'm posting it here again so the next time someone has this problem they can find it (hopefully).
If Apple took its UX development as seriously as they do their curation of forums posts this would be a non-issue.
Original post:
No matter what I do, the Mail app continues to send the wrong name when I reply to an email. This is incredibly frustrating and I'm hoping someone can suggest something I haven't already tried.
What I've tried so far:
Contacts
I've edited my contact card to not have the wrong name anywhere. Notably, searching for the wrong name still brings up my contact card. Even though it doesn't show in any fields.
Mail settings
I've gone into Settings->Mail->Accounts and ensured the Name field has only the correct name.
iCloud settings
I've gone to icloud.com, opened the Mail app, and clicked the gear icon to bring up settings. The right name is listed there.
I'm pulling my hair out trying to find where this name is hidden. I would rather it not add any name to my email From line if it can't use the correct one.
Solution: in Settings->Mail app->Accounts, make sure you actually enter your name in the fields. If your contact name is there but it's grey, indicating it was the default, this may not be used.
Note: I'm putting this under Accessibility and Inclusion because making it difficult or hidden to change your name on email could end up deadnaming someone. Which is not cool. It's bad enough y'all make given name and surname required fields when not everyone in the world uses a surname.
I'm trying to make macOS VoiceOver read some in text in the parent tabview when the child tabview changes tabs. VoiceOver always reads the first text entry in the child sub tab ignoring attempts to switch where the focus is.
I've tried these things, in the example textItem is a member of the parent tabview class:
.setAccessibilityApplicationFocusedUIElement(textItem)
.setAccessibilityFocused(true)
Each sub tab is a view controller loaded from a storyboard and I've added code in viewDidAppear to set the accessibility focus. I've also tried using a notification to the parent tab view to set the accessibility focus at the end of the sub tab's viewDidAppear.
Nothing seems to work, is there way to actually change the current focused accessibility UI element programmatically? This needs to work on macOS 13 and greater.
Here is a rough layout of what I'm trying to accomplish. When the use selects "sub tab 2", I want the text "Text to read first" to be the focus and have VoiceOver read that. What really happens is VoiceOver reads the contents of the sub tab "Feature Name"
when trying to connect to our server - I get an error which occurs only in the app-clip:
Error Domain=NSURLErrorDomain Code=-1004 "Could not connect to the server."
more specifically - I get this error when trying to simulate a slow connection with Network Link Conditioner (LTE / 3G).
it only happens on Network Link Conditioner , and only in the app-clip: when I disable the Network Link Conditioner it starts working again.
I receive the error quite fast, so it's not a time-out issue.
things I've tried (and didn't help):
increase time-out period
reduce the network requests to 1 at the time.
set AllowsArbitraryLoads to true
full description of the error:
Domain=NSURLErrorDomain Code=-1004 "Could not connect to the server." UserInfo={_kCFStreamErrorCodeKey=65, NSUnderlyingError=0x2826aff00 {Error Domain=kCFErrorDomainCFNetwork Code=-1004 "(null)" UserInfo={_NSURLErrorNWPathKey=satisfied (Path is satisfied), interface: en0[802.11], ipv4, dns, uses wifi, _kCFStreamErrorCodeKey=65, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDataTask <3D0E9D26-B6BE-41C9-9D97-C61F6E71DBE8>.<3>, _NSURLErrorRelatedURLSessionTaskErrorKey=(
"LocalDataTask <3D0E9D26-B6BE-41C9-9D97-C61F6E71DBE8>.<3>"
), NSLocalizedDescription=Could not connect to the server., NSErrorFailingURLStringKey=<<serverAddress>>, NSErrorFailingURLKey=https://<<serverAddress>>, _kCFStreamErrorDomainKey=1})
can I submit the same app name and same icon with another app with same account or different account
can I submit the same app name and same icon with another app with same account or different account
Hello, I cannot establish a correct USB connection with my iPhone 15 pro (18.1 beta) on a Macbook Pro 14" 2021 (15.0 beta)
This error message is displayed here.
Hi, I’m testing iOS 18 for a some time already and really enjoying your efforts to merge Lithuanian and English keyboards. Unfortunately in 18 Beta 5 I have received today there is just 1 option of “EN LT” left and in it Lithuanian special symbols (like ę ė ų į and etc.) are in the most uncomfortable / far away location when typing. Please change it and the best would be - please remove all non Lithuanian symbols from “EN LT” layout, as its not needed and brings only confusion when typing.
I am not getting option to upload the dark varient of the appicon, can you guys help me with this?
现在我的IPhone已经更新到了IOS18beta1版本,等到正式版发布后,可以直接更新IOS18吗?
From the time I have installed the beta version my Skillshare app is not working , pls help
When I was making sandbox payments in the testing environment, I made a normal recharge, but I received multiple purchase callbacks at the same time. Has anyone encountered the same situation? Does this situation only occur in sandbox environments?
The keyboard is not being correctly recognized under MacOS 15 beta 5.
In my case, on accessibility -> keyboard -> keyboard settings -> input sources, all keyboards are showing a key between "Z" and left Shift, which is not the case. And this key, should be under "esc".
I buy my iPhone 1 and half month..but the battery health drain to 98% how can I solve it please help
on iPad 13'', on beta, I activated voiceover and now I cant unlock my iPad. as soon as I touch it, it started telling me the time and tells me to slide up but it doesn't do it. Does not ask for pin either