Search results for

DTiPhoneSimulatorErrorDomain Code 2

158,657 results found

Post

Replies

Boosts

Views

Activity

Age Assurance Sandbox Testing - revoke vs declined
1)What's the relationship between Texas, child, 16-17, significant change declined from my 11:03 screenshot below and revoking? ie what situation could someone decline but not revoke or vice versa, what is the purpose of the distinction in testing or legally or implications/implementation 2) What is a cause besides a typo to receive the Can't trigger notification titled message after using Revoke? you can see by my screenshot by comparing the left and right half there is no title. 3) Even if i find a workaround perhaps my info will help someone else or be an opportunity for improved documentation see: see my 5:54pm second screenshot
0
0
63
1w
Reply to Swift UI View is to small
Thanks. Image is 300 * 300, so it does not fill the screen. What do you expect ? The view to fill the screen ? Something else ? Or is the problem with the space at the top ? In this case, see this: https://codecrew.codewithchris.com/t/remove-white-space-navigationview-ios-foundations-m5-wrap-up/15656 ; even though it seems you have already put navigationTitle as indicated. I do not see where you call RecipeView (in code, not Preview). Did you set the size of the frame for this RecipeView ? Note: for testing purpose set the background of RecipeView to some color, as yellow, so that you see it clearly.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
1w
Reply to Icon composer icon contains alpha channel upload error
I am also running into this error. (Jan 2026) Xcode v26.2. Icon Composer 1.2 (76) Looking at the release notes above, the issue has not been resolved. Error message I get: Invalid large app icon. The app icon in the asset catalog -app name- can't be transparent or contain an alpha channel. My two cents, it might be due to the automated compiler for the apple App Store distribution SDK they use to review apps quickly before it goes to a real person. This might be due to the new Liquid Glass UX/UI update. I was really excited to try it, but until it gets fixed, I don't think we will get app icons being Liquid Glass anytime soon. Might be due to the fact that, I have the lowest version of iOS 17, which might not recognize it yet. I wonder if it is only for iOS 26 uploads? no idea.
1w
In need of a sample receipt file that uses the SHA-256 hash
My app that's been around since the dawn of the Mac App Store, and which uses its own receipt validation code for 15 years now, recently sometimes triggers a does not support the latest receipt validation requirements error message with my app's users. But I cannot reproduce it, even if I freshly install the app on a M4 Mac running macOS 26.2. So I have a hard time testing my fix. Does someone have a sample receipt file they could share with me (including the MAC from en0 / GUID device ID), or do you know where I can find one that uses the new SHA-256 hash? In fact - when reading https://developer.apple.com/documentation/appstorereceipts/validating-receipts-on-the-device it seems that there's only a SHA-1 after all. So why do some users get the receipt validation requirements message at all? I'm only reading the receipt, decoding the ASN.1 fields and then validate the hash from the receipt (field 5) against the SHA-1 from the GUID+receipt, as always, calling libCrypto's SHA1() function. So, what woul
3
0
179
1w
Sporadic "no route to host" over ssh
When connecting to my M1 mac mini over ssh, certain programs are often unable to reach network destinations in the corporate LAN, although they can usually reach external addresses like www.apple.com. For example, a java program attempting to download from teamcity.dev.corp.com:8111 often fails like: java.net.NoRouteToHostException: No route to host Running the exact same command from the Apple Terminal program works like normal, simply connecting over ethernet on en0 to a TeamCity server inside the same building. Basic diagnostics from the ssh session do not show anything unusual: > traceroute teamcity.dev.corp.com traceroute to teamcity.dev.corp.com (10.21.4.1), 64 hops max, 40 byte packets 1 teamcity.dev.corp.com (10.21.4.1) 1.702 ms 0.409 ms 0.336 ms > route -n get teamcity.dev.corp.com route to: 10.21.4.1 destination: 10.21.4.1 interface: en0 flags: recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 0 0 0 0 0 0 1500 1194 > uname -a Darwin mac 25.1.0 Darwin Kernel Version 25.1.0: Mon
3
0
91
1w
Reply to My app crashes on startup in iOS 26
As far as I understand Core Data - and who really understands it, really? - an entity will have an ObjC class generated for it, so you've just unfortunately used a name that Apple is now using for a class in one of their private frameworks on iOS 26. As you've seen, renaming your entity fixes the issue because your new entity's generated class no longer has the same name, and so the compiler isn't seeing two classes with the same name. As a general rule, avoid using names anywhere in your code that start with three capital letters, i.e. PSSegment. It's tempting to use your own name to name classes, and in your case perhaps you would name something HHSegment (because: HeezerHiker). Apple use this convention, so you should try and avoid it. For example, NSString == NS String == NextStep String. You could use something like HHEntitySegment, or the name of your app, i.e. MyAppSegment.
1w
Reply to Swift UI View is to small
Ok, so the same problem is also with the simulator (iPhone 17). Sorry for that. Here is the Code for the ListItem: import SwiftUI struct RecipeListItem: View { let image: Image let title: String let subtitle: String let category: String let kitchenDevice: String let istTermomix: Bool var body: some View { ZStack { VStack(alignment: .leading, spacing: 16) { image .frame(width: 300, height: 300) VStack(alignment: .leading, spacing: 12) { // Title & Subtitle block with rounded background VStack(alignment: .leading, spacing: 4) { Text(title) .foregroundStyle(.background) .font(.title2.bold()) Text(subtitle) .foregroundStyle(.background) .font(.caption) } .padding(12) .background( RoundedRectangle(cornerRadius: 20, style: .continuous) .fill(Color.primary) ) HStack { // Details block with rounded background VStack(alignment: .leading, spacing: 4) { Text(category) .foregroundStyle(.background) .font(.caption) Text(kitchenDevice) .foregroundStyle(.background) .font(.caption) if istTermomix { Text(Termomi
Topic: UI Frameworks SubTopic: SwiftUI Tags:
2w
Live Streaming issue for the RTSP
We have the application 'ADS Smart', a companion application for our ADS Dashcam. We offer a feature that lets users stream the live footage of the dashcam cameras through the app. Currently, we are experiencing a time delay of 30+ seconds to see the live stream, i.e the first frame of the live footage is taking around 30+ seconds to display in the app. We are using the MobileVLCKit library to stream the videos in the app. The current flow of the code, Flutter triggers the native playback via a method channel The Dart side calls the iOS method channel /ts_player with method playTSFromURL passing: url(e.g rtsp://.... for live), playerId viewId (stable ID used to host native UI) showControls optional localIp AppDelegate receives the call and prepares networking Entry point: AppDelegate.tsChannel handler for playTSFromURL in AppDelegate.swift. It resolves the Wi‑Fi interface and local IP if possible: Sets VLC_SOURCE_ADDRESS to the Wi‑Fi IP (when available) to prefer Wi‑Fi for the stream. Uses NWPathMoni
0
0
166
2w
Swift UI View is to small
Hello Apple Developer Forum Community, I’ve got a problem with the display of my SwiftUI View, that is tested on my physical iPhone. It’s shown very small (Picture) and on the Xcode Canvas Simulator it get’s shown right. What is the problem with my code?
4
0
205
2w
SwiftData CloudKit sync broken on iOS 26
Hi everyone, I’m running into a breaking issue with SwiftData automatic CloudKit syncing on iOS 26, and I'm trying to determine if this is a known regression or a new configuration requirement I missed. The Setup: My setup is extremely standard; I am using the default configuration exactly as described in Apple's documentation here: https://developer.apple.com/documentation/swiftdata/syncing-model-data-across-a-persons-devices The schema is very simple: A single @Model class. No relationships. The Issue: Prior to iOS 26, this exact app was successfully syncing data between devices and to iCloud without issues. Immediately after the iOS 26 update, syncing stopped completely. I haven't changed any code, but when I check the CloudKit Console, I am seeing some BAD_REQUEST errors during sync attempts. Since I am using the default SwiftData sync (and not manual CKRecord handling), I’m not sure how my client code could be triggering a bad request unless the schema requirements have changed under th
1
0
119
2w
Apple Sign-In Fails with Mysterious 404 Error on Non-Existent /appleauth/auth/federate Endpoint
I'm implementing Apple Sign-In in my Next.js application with a NestJS backend. After the user authenticates with Apple, instead of redirecting to my configured callback URL, the browser makes a POST request to a mysterious endpoint /appleauth/auth/federate that doesn't exist in my codebase, resulting in a 404 error. Tech Stack Frontend: Next.js 16.0.10, React 19.2.0 Backend: NestJS with Passport (using @arendajaelu/nestjs-passport-apple) Frontend URL: https://myapp.example.com Backend URL: https://api.example.com Apple Developer Configuration Service ID: (configured correctly in Apple Developer Console) Return URL (only one configured): https://api.example.com/api/v1/auth/apple/callback Domains verified in Apple Developer Console: myapp.example.com api.example.com example.com Backend Configuration NestJS Controller (auth.controller.ts): typescript @Public() @Get('apple') @UseGuards(AuthGuard('apple')) async appleAuth() { // Initiates Apple OAuth flow } @Public() @Post('apple/callback') // Changed from @Get t
0
0
393
2w
2 high scores vanished
In my game 854159268 (com.1791entertainment.qugame), in my quMostRecent3 leaderboard, the top 2 entries have 'vanished'. They were there yesterday. I know these players have played today, as I see their scores on other leaderboards. Any ideas how to get these back? These 2 players (me and my tester) are both TestFlight ing - not sure if that changes things.
1
0
366
2w