Search results for

İOS 26 beta battery %1

250,746 results found

Post

Replies

Boosts

Views

Activity

Reply to SpeechAnalyzer speech to text wwdc sample app
I have also been testing on beta releases and on public release as well but not working for Arabic locale. Error Domain=SFSpeechErrorDomain Code=1 transcription.ar asset not found after attempted download. UserInfo={NSLocalizedDescription=transcription.ar asset not found after attempted download.} I have also reported this on Radar https://feedbackassistant.apple.com/feedback/20276792
Topic: Media Technologies SubTopic: Audio Tags:
15h
Reply to SpeechAnalyzer error "asset not found after attempted download" for certain languages
I have also been testing on beta releases and on public release as well but not working for Arabic locale. Error Domain=SFSpeechErrorDomain Code=1 transcription.ar asset not found after attempted download. UserInfo={NSLocalizedDescription=transcription.ar asset not found after attempted download.} I have also reported this on Radar https://feedbackassistant.apple.com/feedback/20276792
Topic: Media Technologies SubTopic: Audio Tags:
15h
SpeechAnalyzer error "asset not found after attempted download" for certain languages
I am trying to use the new SpeechAnalyzer framework in my Mac app, and am running into an issue for some languages. When I call AssetInstallationRequest.downloadAndInstall() for some languages, it throws an error: Error Domain=SFSpeechErrorDomain Code=1 transcription.ar asset not found after attempted download. The .ar appears to be the language code, which in this case was Arabic. When I call AssetInventory.status(forModules:) before attempting the download, it is giving me a status of downloading (perhaps from an earlier attempt?). If this language was completely unsupported, I would expect it to return a status of unsupported, so I'm not sure what's going on here. For other languages (Polish, for example) SpeechTranscriber.supportedLocale(equivalentTo:) is returning nil, so that seems like a clearly unsupported language. But I can't tell if the languages I'm trying, like Arabic, are supported and something is going wrong, or if this error represents something I can work around. Here's the relevant
5
0
166
15h
How to disable tab editing in a UITabBarController sidebar?
I’m creating a UITabBarController with a simple array of UITab instances. I’m setting the mode to .tabSideBar. How do I prevent editing? I don’t want the Edit button to appear at all. I’ve tried setting the tab controller’s customizableViewControllers property to both nil and an empty array but neither is preventing the Edit button from appearing. I scanned the various delegates and I don‘t see any relevant methods. So far I’ve tested this on a simulated iPad running iPadOS 26 using Xcode 26 RC.
2
0
82
22h
Reply to How to disable tab editing in a UITabBarController sidebar?
Thank you. Setting preferredPlacement to fixed was the missing piece. I already had allowsHiding set to false and I’m not using any tab groups. The Edit button no longer appears in the sidebar. But I have discovered an iOS 26 (and iOS 18) bug in the process. I need to file a bug report but here’s the issue. I present the tab bar controller as a modal view controller on an iPad. If I resize the app window from full screen to a size that is horizontally compact while the tab bar controller is in view, the tab bar controller of course changes from showing a sidebar to showing an old style tab bar on the bottom with a More tab. Selecting the More tab now shows an Edit button. But only in this case. If the tab bar controller is presented after the app window is made horizontally compact, then the More tab does not show the Edit button.
Topic: UI Frameworks SubTopic: UIKit Tags:
22h
Reply to How to configure macOS app permission MANUALLY (not GUI)
Yes, you are right: System Settings > Privacy & Security > Local Network. The GUI does not provide the means to add more applications here. I have four copies of the modeling tool installed, which have a common core, but differ due to customizations. The OS picked one (and unfortunately the wrong one) to associate network permissions. Since then it is very difficult to transfer the permission to the right copy. I would like to give ALL four copies the network permission, but as I said, the GUI doesn't provide the ability. I think it should be possible to add this permissions manually. Thank you in advance for any hint. Manfred
15h
How to configure macOS app permission MANUALLY (not GUI)
I need to run multiple, slightly different copies of a modeling tool, which all need access to a model repository on a different machine. Security Settings -> Network tends to pick one modeling tool (and unfortunately the wrong one) for permission, but the dialog offers no way to add the other copies manually. Where can I configure the permission on low level. [macOS Sequoia 15.6.1]
2
0
38
15h
Reply to iOS 26 RC - UITextField duplicates first IME character when losing focus
Log Comparison Details for Bug Report Detailed Log Analysis: iOS 18.4 vs iOS 26 RC Complete Test Scenario Log Comparison Test Case: Type あ → Press Enter → Type あ → Delete → Type A iOS 18.4 / Xcode 16 (Correct Behavior) // Step 1: Type first あ === stringRange: 0[any]..<0[any], currentText: , replacementText: a changedText: a, allowChange: true === // Note: IME shows a first, then converts to あ // Step 2: IME converts a to あ === stringRange: 0[utf16]..<1[utf16], currentText: あ, replacementText: あ changedText: あ, allowChange: true === // Result: Text = あ, Count = 1 ✓ // Step 3: Press Enter (No additional delegate call - composition confirmed correctly) // Result: Text = あ, Count = 1 ✓ // Step 4: Delete あ === stringRange: 0[utf16]..<1[utf16], currentText: あ, replacementText: changedText: , allowChange: true === // Result: Text = , Count = 0 ✓ // Step 5: Type A === stringRange: 0[any]..<0[any], currentText: , replacementTe
Topic: UI Frameworks SubTopic: UIKit Tags:
15h
iOS 26 RC - UITextField duplicates first IME character when losing focus
Platform: iOS 26 RC / Xcode 26 RC Component: UIKit - UITextField Description: When typing a Japanese character (or other IME input) as the first character in a UITextField and then losing focus (by pressing Enter or tapping elsewhere), the character is incorrectly duplicated. This issue only happens in iOS26 beta. Steps to Reproduce: Create a UITextField with shouldChangeCharactersIn delegate Switch to Japanese keyboard Type あ (or any hiragana character) Press Enter or tap outside the text field Observe the character count becomes 2 instead of 1 Expected Result: Character count should remain 1 Actual Result: Character is duplicated, count becomes 2 Sample Code: func shouldChangeText( in range: NSRange, replacementText string: String, maximumNumberOfCharacters: Int, regexValidation: String? = nil) -> (String, Bool) { guard let stringRange = Range(range, in: currentText) else { return (currentText, false) } if let regex = regexValidation, string != , // d
1
0
53
15h
App Record Creation Error with Organizer
I've been trying to send an archive with Organizer to iTunes Connect. It's not my first time. I've been doing it for more than a decade. Anyway, when I try to send a package for my new macOS application, Organizer gives me two error messages that I have never seen before. App Record Creation Error App Record Creation failed due to an invalid attribute. The SKU you entered has already been used. App Record Creation Error App Record Creation failed due to request containing an attribute already in use. The app name you entered is already being used for another app in your account. If you would like to use the name for this app you will need to submit an update to your other app to change the name, or remove it from App Store Connect. An odd thing is that, as shown in the screenshot below, Organizer demands that I enter an application name and SKU manually. I've entered the exactly same ones from the App Store Connect page. I didn't see this step on Organizer last month. I'm using a new SKU for this sub
4
0
156
1d
iOS 26 Safari & WebView: VisualViewport.offsetTop not reset after keyboard dismissal, causing fixed elements misplacement
System/device combinations where the issue does not occur: Physical device: iOS 26.0 (23A5318c) + iPhone 16 Pro Max System/device combinations where the issue does occur: System versions: Physical device: iOS 26.0 (23A5330a), iOS 26.0 (23A340) Simulator: iOS 26.0 (23A339) Device models: Physical device: iPhone 12 Reproducible in Safari, WKWebView, and UIWebView: Yes Actual behavior In WebView (and identically in Safari): Before the keyboard is shown, header/footer elements with position: fixed are correctly aligned with the screen viewport. Scrolling up/down works as expected. After the keyboard appears, the visualViewport position changes. Bug: When the keyboard is dismissed, visualViewport.offsetTop does not reset to 0. As a result, fixed header/footer elements remain misaligned: When scrolling down, the position looks correct. When scrolling up, the header/footer are visibly offset. Steps to reproduce Focus an input field → the keyboard appears Dismiss the keyboard Obser
9
0
1.7k
7h
Reply to Swift Playground - Types Lesson
For context, I’m using Swift Playground 4.6.4 on macOS 15.6.1. It has two lessons: Learn to Code 1 Learn to Code 2 Your reference to the Types lesson indicates you’re doing Learn to Code 2. Types > Introduction > page 8 introduces the concept of portal, indicating that they’re part of the puzzle world. That concept was introduced in Learn to Code 1 > Commands > Portal Practice. Likewise the concept of switch is in Learn to Code 1 > Commands > Toggling a Switch. [quote='800744021, Adiv_Abramson, /thread/800744, /profile/Adiv_Abramson'] I cannot write code to call methods or set properties on objects about which I have no useful information. [/quote] If you’re asking questions like this then I suspect that Learn to Code isn’t really for you. You might be better off starting with The Swift Programming Language, using a general playground, or a playground in Xcode, to play with the many examples it contains. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical S
1d
Reply to Wifi Aware iOS devices authentication fails after a period of time
If you can reproduce the problem with our sample code then the path forward here is clear: File a bug against Wi-Fi Aware explaining how to reproduce the issue with our sample. When you file a bug you’ll be asked to include a sysdiagnose log. Trigger that log immediately after seeing the problem. And our Bug Reporting > Profiles and Logs page has a Wi-Fi for iOS/iPadOS entry that explains how to enable additional Wi-Fi specific logging. Please post your bug number, just for the record. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
1d