Search results for

xcode github

94,696 results found

Post

Replies

Boosts

Views

Activity

Reply to UICollectionViewCell context menu is clipped when long-pressing a view using UIGlassEffect (iOS 26)
Thanks for the post, this is very interesting, do you have a focused sample I can download and see the code and how it behaves. What version of Xcode are you using and what device iOS version is it running? Have you set on both the cell clipsToBounds = false on both the cell and its contentView? Is it embed the inside a container view? Have you disabled the Liquid Glass in the info.plist to see the difference? I think with a focused simple project will help me understand and will help other developers see what you are seeing and what code is producing this. Albert Pascual
  Worldwide Developer Relations.
Topic: UI Frameworks SubTopic: UIKit Tags:
1w
Reply to The requested app is not available or doesn't exist.
@savci2 Thanks for your post, this is the second old thread I see you posting the issue you are having with TestFlight. I would recommend you if you are having a problem with TestFlight to create a new thread and post all the logs and screenshots so engineers here can look if this is a new issue or an existing issue and help you. Make sure you’ve added the external testers’ emails to the Internal Testing and External Testing lists in the App Store Connect dashboard. External testers must accept the invitation to download the app. Ensure that all agreements related to distributing your app on TestFlight are active. Check the logs in Xcode’s Devices and Simulators section. There might be error messages related to the download issue and provide those logs on your post. Hope this helps. Albert Pascual
  Worldwide Developer Relations.
1w
Reply to Embedding self-built WebKit framework in Mac app
I am in a somewhat similar situation, except that in my case I want my app to use an older (Apple official) WebKit framework version instead of most recent available because there has been some change in WebKit behaviour since macOS 26.2 which causes errors during Webkit javascript communications. Therefore I am trying to embed a copy of Apple's WebKit.framework from an earlier macOS version. However, XCode build result sin a signing error with bundle format unrecognized, invalid, or unsuitable for the WebKit framework. Is it possible to embed an older WebKit framework version, and if so how to do so in XCode?
Topic: App & System Services SubTopic: Core OS Tags:
1w
Reply to The requested app is not available or doesn't exist.
I have the same problem. About 70 people were testing the application via TestFlight. A mandatory update was required. The application works in the simulator and on a real device. On TestFlight, I can't share it with the external group, and I encounter errors during download. I updated Xcode, renewed the certificates, reviewed the agreements, and reinstalled everything from scratch. The problem still persists. The previous working versions expired during the initial installation. It's stuck at the Ready to Submit stage. I wrote to support and am waiting for a response.
1w
Reply to Create ML fails to train a text classifier using the BERT transfer learning algorithm
Hi @Frameworks Engineer thanks for looking into this. Yes, here are the relevant version numbers: Tahoe Version 26.1 (25B78) Xcode Version 26.2 (17C52) Create ML Version 6.2 (175.7) MacBook Pro (M1 Pro, 32 GB) I did wonder if maybe I don't have the model assets on my machine, but note that I can successfully run the BERT option using the framework directly (with the above code). Although it's a little less convenient, I could simply build the models using the framework, but to do so I was hoping to get confirmation on two points: Is there a specific way to select the Latin/Automatic option to get the multilingual model which I can train with multi-language training data? If not, should I simply set the language to e.g. .english to get the multilingual model. If I do so, does that mean that all languages will be tokenized with the wrong tokenizer, or could there be some other problem in doing this? Many thanks for any guidance you can provide.
1w
Reply to DNS Proxy system extension – OSSystemExtensionErrorDomain error 9 “validationFailed” on clean macOS machine
Thanks for the updated posts. [quote='873386022, Leo_Nagano, /thread/812857?answerId=873386022#873386022, /profile/Leo_Nagano'] legacy dns-proxy entitlement [value] [/quote] To be clear, this isn’t a legacy value. This value is used for App Store distribution, both on iOS and macOS. It’s also used for development. The -systemextension suffix is used for direct distribution using Developer ID signing. Neither value is more legacy than the other. As to what’s going wrong, you’ve tried a lot of different things and it’s hard to be sure what’s what at this state. However, this is problematic: NSExtensionPointIdentifier com.apple.system_extension.network_extension And it suggests that you could do with some high-level guidance. The best place to get that is Xcode. Consider this sequence: In Xcode 26.2, create a new project from macOS > App template. In my case I named it “Test812857”. Then create a new target within that project, using the macOS > System Extension > Network Extension tem
1w
How to set custom height for keyboard extension without resize flicker?
Description I'm developing a custom keyboard extension using UIInputViewController and need to set a specific height of 268 points. The keyboard functions correctly, but there's a visible flicker and resize animation during launch that I cannot eliminate. The Problem When the keyboard launches, iOS provides incorrect heights before settling on the correct one. At launch, the view starts at 0×0. Around 295ms later, iOS sets the frame to 440×956 which is full screen height and wrong. Around 373ms, iOS changes it to 440×452 which is still wrong. Finally around 390ms, iOS settles at 440×268 which matches our constraint. This causes visible flicker as the view resizes three times rapidly. The keyboard appears to shrink from full screen down to the correct height, and users can clearly see this animation happening. What I've Tried I've tried adding a height constraint on self.view which gives me the correct height but causes the visible flicker. I created a custom UIInputView subclass and overrode intrinsicContentS
0
0
90
1w
CarPlay on iOS 14 and iOS 15
My app developed with the new Xcode 26 doesn't appear on CarPlay when running on iOS 14–15 devices. My developer has obtained the com.apple.developer.carplay-driving-task permission, but iOS 16+ devices allow my app to display on CarPlay. Can anyone help resolve this issue? Is it because the carplay-driving-task permission is only available for iOS 16+ devices? If I want compatibility with iOS 14–15 devices, do I need to apply to Apple for the carplay-audio permission to use it? Has anyone encountered a similar issue? Thanks!
1
0
86
1w
Reply to Content Filter Permission Prompt Not Appearing in TestFlight
[quote='873483022, lilan, /thread/773414?answerId=873483022#873483022, /profile/lilan'] Sorry if it's really basic. [/quote] This is definitely not basic. Getting all of these ducks to line up is a significant challenge. My point is that there are lots of resources to help you. [quote='873483022, lilan, /thread/773414?answerId=873483022#873483022, /profile/lilan'] But I really don't know where to start. [/quote] I suggest you start with the documentation for the PIR Service Example package: Go to the page I linked to above. At the top right you’ll see a link to the documentation on the Swift Package Index. Click that. Explore that documentation. [quote='873483022, lilan, /thread/773414?answerId=873483022#873483022, /profile/lilan'] can we run it on xcode … ? [/quote] Quoting the read me for that package: macOS or Linux operating system Swift version 6.0 or later Optionally, XCode version 16.1 or later [quote='873483022, lilan, /thread/773414?answerId=873483022#873483022, /profile/lilan'] can
1w
URL(fileURLWithPath:) behavior change in iOS 26 - Tilde (~) in filename causes unexpected path resolution
Environment: Xcode 26 iOS 26 Also tested on iOS 18 (working correctly) Description: I'm experiencing a behavior change with URL(fileURLWithPath:) when the filename starts with a tilde (~) character. On iOS 18, passing a filename like ~MyFile.txt to URL(fileURLWithPath:) treats the tilde as a literal character. However, on iOS 26, the same code resolves the tilde as the home directory, resulting in unexpected output. Minimal Example: let filename = ~MyFile.txt let url = URL(fileURLWithPath: filename) print(url.lastPathComponent) Expected Result (iOS 18): ~MyFile.txt Actual Result (iOS 26): 924AF0C4-C3CD-417A-9D5F-733FBB8FCF29 The tilde is being resolved to the app's container directory, and lastPathComponent returns the container UUID instead of the filename. Questions: 1. Is this an intentional behavior change in iOS 26? 2. Is there documentation about this change? 3. What is the recommended approach for extracting filename components when the filename may contain special characters like ~? Workaroun
9
0
462
1w
Reply to App Store doesn't display English among available languages for my new app
Localizable.xcstrings is a string catalog, and so you are good. Do you localize the English column for your string catalog then? If not, Xcode will not generate the en.jproj for you. You can check with the following steps: Select Localizable.xcstrings in Xcode Project Navigator to show string catalog view. Select English to show the English localization. There, if the rows in the English(en) column are all grayed, Xcode won't generate the localization folder for you. So make sure you have at least one key localized. Best, —— Ziqiao Chen  Worldwide Developer Relations.
1w