Search results for

xcode github

91,981 results found

Post

Replies

Boosts

Views

Activity

Reply to Apple Music API: Adding To Collaborative playlist gives 500 error
Our engineering teams need to investigate this issue, as resolution may involve changes to Apple's software. Please file a bug report, include a small Xcode project and some directions that can be used to reproduce the problem, and post the Feedback number here once you do. If you post the Feedback number here I'll check the status next time I do a sweep of forums posts where I've suggested bug reports. Bug Reporting: How and Why? has tips on creating your bug report.
Topic: Media Technologies SubTopic: General Tags:
1w
Reply to Replace Apple Clang with Vanilla Clang, what can go wrong?
It would be helpful to understand what parts of C++20 support that you feel motivate needing to switch in the first place so that we're aware. We have a published list of C++20 features and their support status, if you haven't seen it. Further, the Xcode Release Notes are extensive, and so smaller developments in C++20 support that you value may appear there, and I recommend doing a survey through the different versions there to also gauge the amount of changes in C++20 support. If there's more that you need, then please let us know through Feedback Assistant, and feel free to post the FB numbers of any of your requests here for my reference. however our concern is that we might have overlooked possible issues that could arise. The clang version included with Xcode or the Command Line Tools packages is the supported option for development and distribution with Apple frameworks. By going off that path, especially since you name a few Apple-specific frameworks such as AVFoundation and CoreML,
1w
Dynamic Library and Unit Testing - Module not found
Hi! I must be missing something. I am creating a MacOS dynamic library using Xcode. I have created the library as follows: File->New Project then choose macOS 'Library' in Frameworks and Libraries. I give the Product Name TestLib. Framework: STL (C++ Library) Type: Dynamic This creates a default library project, with one exported class 'TestLib'. There's a method HelloWorld. And this suffices for my issue. To be able to test my dynamic library, I want to use an XCtest target. So in the project settings, I select '+', and add a 'Unit Testing Bundle': Product name: TestLibTests Language: Swift Testing System: XCTest Project: TestLib Target to be tested: TestLib I press finish, and my test target is created. Now, I think I need to have a module map. So I Add New File From Template', and choose 'Module Map'. A 'module.modulemap' is created. In the module map file, I name the module 'TestLib', and header 'TestLib.h'. So far, everything makes sense, and no errors. But here it comes... When I want to mak
0
0
326
1w
Reply to Apple ID, Dev Prog Team ID, and provisioning profiles
Thanks! I did remove my Apple Account in Xcode and then added it back. I created a new App ID, I downloaded and installed the new .mobileprovision updated my project and received this error: crun devicectl -j /var/folders/p0/8fpmsfvx2hb3_ry5nqwcf9vh0000gn/T/tmpj4yKXi.tmp device install app --device 00008101-001570591183001E /Users/richarddukes/Downloads/LotBot2/LotBot/bin/Debug/net9.0-ios/ios-arm64/LotBot.app ERROR: Failed to install the app on the device. (com.apple.dt.CoreDeviceError error 3002 (0xBBA)) NSURL = file:///Users/richarddukes/Downloads/LotBot2/LotBot/bin/Debug/net9.0-ios/ios-arm64/LotBot.app/ ---------------------------------------- Unable to Install ?LotBot? (IXUserPresentableErrorDomain error 14 (0x0E)) NSLocalizedRecoverySuggestion = Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.Y50i5O/extracted/LotBot.app : 0xe8008015 (A valid provisioning profile for this executable was not found.) NSLocalizedFailureReason = This app cannot b
Topic: Code Signing SubTopic: General
1w
Concentric corner radius for grouped cells in UICollectionView on iOS 26
What is the recommended way to obtain the concentric corner radius for views within grouped UICollectionView cells? In the most basic example, a UICollectionView with one section and one cell, we observe the cell takes almost the shape of a capsule, but it is indeed not a capsule. What is the way to obtain the radius of the grouped area from within the cell or its registration? I would like to layer elements on top that are concentric to the cell's clip shape. I've tried using custom views with .concentric UICornerConfigurations, setting .cornerConfiguration on the cell and on a custom backgroundView and I've even tried obtaining the .effectiveRadius of the cell after layout (returns 0.0). As of Xcode 26.0 Beta 7, nothing works. This seems like a huge omission; what am I missing here?
1
0
124
1w
Reply to Native Crash - Unknown Function (/usr/lib/system/libsystem_kernel.dylib) Unknown Function (/usr/lib/system/libsystem_kernel.dylib)
[It seems that the mods didn’t like your previous post. Normally I might try to fix that but there’s no point in this case, as will become clear.] [quote='855888022, EternalForge, /thread/797794?answerId=855888022#855888022, /profile/EternalForge'] is this? [/quote] No. The xcode://… URL you posted is useful if you want to share a crash with another member of your team, but I’m looking for a .crash or, better yet, a .ips file. Posting a Crash Report explains how to get these. IMPORTANT From the context it’s clear that you’re looking at a crash report in the Xcode organiser. I’ve just updated Posting a Crash Report to explain how to get a .crash file from there. See the new Getting a Crash Report from the Xcode Organiser section. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
1w
Reply to App signing
I’m assuming that LotBot is an app that you’re developing, not something from another developer. [quote='798623021, RichardTDukes, /thread/798623, /profile/RichardTDukes'] How can I get Xcode to use W246SX52AS? [/quote] You are mixing up your 10 character alphanumeric codes, which isn’t a surprise because those codes show up in multiple places. The ones I can think of off the top of my head are used: To identify a team — In your case that’s W246SX52AS, aka your Team ID. To uniquely identify an individual within a team — In this case that’s 86537MF8N2. For unique App ID prefixes — This is effectively deprecated; you can and should use your Team ID as your App ID prefix. A distribution code-signing identity, that’s the Apple Distribution: Richard Dukes (W246SX52AS) name in your case, always uses the Team ID because it’s scoped to your team as a whole. A development code-signing identity, that’s the Apple Development: Richard Dukes (86537MF8N2) name in your case, always has the user ID because it’s scop
1w
Reply to NSScrollPocket overlay appearing on scroll views in NSSplitViewController on macOS Tahoe
I'm seeing the same problem. I was investigating the titlebar itself, your post helped me by identifying the real culprit - thanks! The use of NSSplitViewController is not relevant, it's enough to e.g. put NSTableView inside a titlebar-less window with NSWindowStyleMaskFullSizeContentView, titleVisibility = NSWindowTitleHidden and titlebarAppearsTransparent = YES. Despite having no visible titlebar, the pocket meant for it is still present. My affected window is essentially the same thing as Xcode's welcome window, which however doesn't suffer from it, so I wonder what they do differently... I don't think there's any public API for this, certainly not documented one, scrollEdgeEffectStyle is SwiftUI-only. You can see that WebKit has to do some private API sorcery with NSScrollPocket... In my case at least, hiding the pocket is enough to fix the visual artifacts, so I grudgingly resorted to that: static NSView* FindSubviewOfClass(NSView *root, Class cls) { if (!root || !cls) return nil; for (NSView *s
Topic: UI Frameworks SubTopic: AppKit
1w
Core Data initialization causes app to deadlock on startup
Users have been reporting that the TestFlight version of my app (compiled with Xcode 26 Beta 6 17A5305f) is sometimes crashing on startup. Upon investigating their ips files, it looks like Core Data is locking up internally during its initialization, resulting in iOS killing my app. I have not recently changed my Core Data initialization logic, and it's unclear how I should proceed. Is this a known issue? Any recommended workaround? I have attached the crash stack below. Thanks! crash_log.txt
2
0
84
1w
Where is the instruments command line tool?
I was reading through this documentation about instruments command line tool https://help.apple.com/instruments/mac/current/#/devb14ffaa5 and how it can be launched from the command line. However, unlike what the documentation states, there's no such instruments command anywhere on my macos M1 (OS version 15.6). That command gives: $> instruments zsh: command not found: instruments I do have XCode installed which has the Instruments.App (GUI app) but not the command line utility: $> ls Xcode.app/Contents/Applications/ ... Instruments.app Is that linked documentation up-to-date (it does say latest in the URL)? Is there some other way to install this command line utility?
3
0
119
1w