Search results for

“DTiPhoneSimulatorErrorDomain Code 2”

164,071 results found

Post

Replies

Boosts

Views

Activity

Communication between two process in macOS.
We have 2 process in our macOS application Daemon process written in golang Swift application Currently, the communication between both the process are done with Unix domain socket. However, we are seeing significant amount of delay when large amount of data communication. We are looking for some faster communication. Probably XPC is the answer. But not sure how to use XPC between two process which are written in different language. Any sample code would be great help.
1
0
1.3k
Jun ’23
Two-Factor Authentication Problem
Ever since setting up two-factor authenication, every time I log in to my account, I have to enter a code. Every time it tells me, You will not be asked for a verification code the next time you sign in. I click Trust, and yet it keeps asking me. Will it ever actually trust my browser and stop asking me, or is this just something I'm going to have to do every time?
6
0
2.5k
Mar ’19
Swift 2 SKEmitter Problem?
All,Before Apple released Swift 2 and Xcode 7 I was using the following Swift code to display Particles. It worked like a charm. Then the updates to Swift 2 and the particles just will not render and display. Here is the code does anyone know how I can fix it?let sparkEmitter = SKEmitterNode(fileNamed: zombie_slice.sks) sparkEmitter!.name = sparkEmitter sparkEmitter!.zPosition = 1 sparkEmitter!.targetNode = self sparkEmitter!.particleLifetime = 1 sparkEmitter!.position.x = self.player.position.x sparkEmitter!.position.y = self.player.position.y self.addChild(sparkEmitter!) let actionDone = SKAction.runBlock({self.zombieDeathSequenceEnded(node as! SKSpriteNode, zombieNumber: zombieToUseForDeathSequence as Int, theEmitter: sparkEmitter!)}) node.runAction(SKAction.sequence([zombie_death_anim, actionDone]))
1
0
325
Sep ’15
Watch OS 2: How to transfer data from Watch OS 2 to Mobile App when the two devices are disconnected.
My app requires me to send some data from the Watch OS to the Mobile OS while the two devices are in disconnected state. Is this possible with the transferuserinfo method of the WCSession class? Will the data be delivered?Documentation states that the transferUserInfo method should be used only when the WCSession is active. When the two devices are disconnected, if i call the WCSession activateSession method, will the session be considered as active on the Watch Device?Thanks in advance.
1
0
463
Mar ’16
WeatherKit JWT generation fails with WDSJWTAuthenticator Code=2 despite App ID capability, App Service, and provisioning profile all enabled
am seeing a persistent WeatherKit JWT generation failure with: WeatherDaemon.WDSJWTAuthenticatorServiceListener.Errors Code=2 I already reviewed the related forum discussion where DTS noted that the WeatherKit App Service must be enabled separately from the WeatherKit capability on the App ID. I have confirmed that both are enabled. Confirmed configuration Team ID: FYGW4LHN42 Diagnostic app bundle ID: com.elilindenDinematch.AppleServiceDiagnostics Device: physical iPhone iOS version: 26.5 App version: 1.0 (1) I created a fresh diagnostic app specifically to isolate this from my main app. The issue reproduces in the clean diagnostic app. I have confirmed: WeatherKit is checked under the App ID capabilities. WeatherKit is enabled under Certificates, Identifiers & Profiles → Services. The Services page shows WeatherKit with “Manage your WeatherKit usage,” a “View” button, and “100% of calls available.” A fresh provisioning profile was generated. The embedded provisioning profile is present
0
0
177
Jun ’26
2 Apps (free and buying)
HiIs it possible to develop 2 Versions of all my Apps (one for free with iAds and the other one for buying). Does Apple accept this, even if I have 5 or 6 Apps. Then every App is twice in the App Store.I tried hard to use a InApp-Purchase Code to let the user buy the App and then let disappear the iAd. But without success. I have good codes that should work, but it didn't work when I tested it. I'm not that good in programming. But I nearly finished a working app.I started to create an App a few years ago, but then a few years ago, I stopped to develop, because I thought I can not finish it. Now I want to start again with this project and finish it. I think I can do it, if I always develop 2 Apps of each.thank you
2
0
635
Apr ’16
StoreKit 2 - Issue
Hello, Im trying to use in-app purchases for first time. I have followed the tutorial for StoreKit 2 from the WWDC21 and in the simulator with the StoreKit Configuration File all was OK. But now I want test to the real server and I have this response: Error enumerating unfinished transactions for first transaction listener: Error Domain=ASDErrorDomain Code=509 No active account UserInfo={client-environment-type=Sandbox, storefront-country-code=USA, NSLocalizedDescription=No active account} In Run -> StoreKit configuration I have selected none In AppleStoreConnect I have created the auto-renewal suscription like in my StoreKit configuration. Also I create a new StoreKit configuration from the AppleStoreConnect and with this file its OK too. None of my testflight testers can see the options to purchase. I dont create any sandbox user. It's the problem? I saw in the documentation thats not needed. I am thankful for any kind of help. David
2
0
3.1k
Oct ’22
two installs with one user
its posible to install the osX el capitan in two macs with the same developer user?Yesterday, i download the installer in my imac, but i dont install in it.i think is best install in my MBP for TEST.But today when i try to download, in MBP, i can,t. the code is in use.Sorry for my english....
2
0
299
Jun ’15
Communication between two process in macOS.
We have 2 process in our macOS application Daemon process written in golang Swift application Currently, the communication between both the process are done with Unix domain socket. However, we are seeing significant amount of delay when large amount of data communication. We are looking for some faster communication. Probably XPC is the answer. But not sure how to use XPC between two process which are written in different language. Any sample code would be great help.
Replies
1
Boosts
0
Views
1.3k
Activity
Jun ’23
cannot login with two factor authentication
I cannot login to my developer account with Safari and iPhone, the 2-factor code appears for less than a second on my iPhone and disappears before I can log in, also the screen to input the code does not appear on my Safari MacBookPro.Had similar problems with 2-factor login for Apple-ID in the past, these problems seem to have reappeared.
Replies
0
Boosts
0
Views
436
Activity
Jun ’20
Reply to endpoint security app crash
This sounded really familiar. I asked the same thing 2 years ago on this thread. Code 2
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’23
Two-Factor Authentication Problem
Ever since setting up two-factor authenication, every time I log in to my account, I have to enter a code. Every time it tells me, You will not be asked for a verification code the next time you sign in. I click Trust, and yet it keeps asking me. Will it ever actually trust my browser and stop asking me, or is this just something I'm going to have to do every time?
Replies
6
Boosts
0
Views
2.5k
Activity
Mar ’19
HTTP/2 and HLS
Does HLS take advantage of the features provided by HTTP/2 standartAll i found on the internet are articles about DASH + HTTP/2
Replies
1
Boosts
0
Views
1.5k
Activity
Mar ’17
Swift 2 SKEmitter Problem?
All,Before Apple released Swift 2 and Xcode 7 I was using the following Swift code to display Particles. It worked like a charm. Then the updates to Swift 2 and the particles just will not render and display. Here is the code does anyone know how I can fix it?let sparkEmitter = SKEmitterNode(fileNamed: zombie_slice.sks) sparkEmitter!.name = sparkEmitter sparkEmitter!.zPosition = 1 sparkEmitter!.targetNode = self sparkEmitter!.particleLifetime = 1 sparkEmitter!.position.x = self.player.position.x sparkEmitter!.position.y = self.player.position.y self.addChild(sparkEmitter!) let actionDone = SKAction.runBlock({self.zombieDeathSequenceEnded(node as! SKSpriteNode, zombieNumber: zombieToUseForDeathSequence as Int, theEmitter: sparkEmitter!)}) node.runAction(SKAction.sequence([zombie_death_anim, actionDone]))
Replies
1
Boosts
0
Views
325
Activity
Sep ’15
Watch OS 2: How to transfer data from Watch OS 2 to Mobile App when the two devices are disconnected.
My app requires me to send some data from the Watch OS to the Mobile OS while the two devices are in disconnected state. Is this possible with the transferuserinfo method of the WCSession class? Will the data be delivered?Documentation states that the transferUserInfo method should be used only when the WCSession is active. When the two devices are disconnected, if i call the WCSession activateSession method, will the session be considered as active on the Watch Device?Thanks in advance.
Replies
1
Boosts
0
Views
463
Activity
Mar ’16
WeatherKit JWT generation fails with WDSJWTAuthenticator Code=2 despite App ID capability, App Service, and provisioning profile all enabled
am seeing a persistent WeatherKit JWT generation failure with: WeatherDaemon.WDSJWTAuthenticatorServiceListener.Errors Code=2 I already reviewed the related forum discussion where DTS noted that the WeatherKit App Service must be enabled separately from the WeatherKit capability on the App ID. I have confirmed that both are enabled. Confirmed configuration Team ID: FYGW4LHN42 Diagnostic app bundle ID: com.elilindenDinematch.AppleServiceDiagnostics Device: physical iPhone iOS version: 26.5 App version: 1.0 (1) I created a fresh diagnostic app specifically to isolate this from my main app. The issue reproduces in the clean diagnostic app. I have confirmed: WeatherKit is checked under the App ID capabilities. WeatherKit is enabled under Certificates, Identifiers & Profiles → Services. The Services page shows WeatherKit with “Manage your WeatherKit usage,” a “View” button, and “100% of calls available.” A fresh provisioning profile was generated. The embedded provisioning profile is present
Replies
0
Boosts
0
Views
177
Activity
Jun ’26
Universal 2 Binaries
I want to check on behaviour of macOS Application which is built with Universal 2 setting and loading a library which is not a Universal 2 binary. Will this work?
Replies
2
Boosts
0
Views
607
Activity
Feb ’21
2 Apps (free and buying)
HiIs it possible to develop 2 Versions of all my Apps (one for free with iAds and the other one for buying). Does Apple accept this, even if I have 5 or 6 Apps. Then every App is twice in the App Store.I tried hard to use a InApp-Purchase Code to let the user buy the App and then let disappear the iAd. But without success. I have good codes that should work, but it didn't work when I tested it. I'm not that good in programming. But I nearly finished a working app.I started to create an App a few years ago, but then a few years ago, I stopped to develop, because I thought I can not finish it. Now I want to start again with this project and finish it. I think I can do it, if I always develop 2 Apps of each.thank you
Replies
2
Boosts
0
Views
635
Activity
Apr ’16
StoreKit 2 - Issue
Hello, Im trying to use in-app purchases for first time. I have followed the tutorial for StoreKit 2 from the WWDC21 and in the simulator with the StoreKit Configuration File all was OK. But now I want test to the real server and I have this response: Error enumerating unfinished transactions for first transaction listener: Error Domain=ASDErrorDomain Code=509 No active account UserInfo={client-environment-type=Sandbox, storefront-country-code=USA, NSLocalizedDescription=No active account} In Run -> StoreKit configuration I have selected none In AppleStoreConnect I have created the auto-renewal suscription like in my StoreKit configuration. Also I create a new StoreKit configuration from the AppleStoreConnect and with this file its OK too. None of my testflight testers can see the options to purchase. I dont create any sandbox user. It's the problem? I saw in the documentation thats not needed. I am thankful for any kind of help. David
Replies
2
Boosts
0
Views
3.1k
Activity
Oct ’22
Composite two NSImages
Is it possible to combine two NSImages, one on top of another, specifying a blend mode? I have two images I would like to overlay, then display in an NSImageView. I appreciate any guidance. Thanks
Replies
2
Boosts
0
Views
496
Activity
Jan ’23
two installs with one user
its posible to install the osX el capitan in two macs with the same developer user?Yesterday, i download the installer in my imac, but i dont install in it.i think is best install in my MBP for TEST.But today when i try to download, in MBP, i can,t. the code is in use.Sorry for my english....
Replies
2
Boosts
0
Views
299
Activity
Jun ’15
Reply to LineMark Does Not Respect .foregroundStyle Color choice
I see 2 colors, just as you specified: 2 are green, one is teal… There is no pink in your code.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’22
Reply to I have two sets of code which are literally same but only one code set works and another doesn't
Doesn’t work means it throws error on Json decoder in catch statement it throws this error only for the first code not for the second cide below the comment although those two code looks similar to me do you find any differences in these two codes (above and below the comment)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’22