Search results for

“DTiPhoneSimulatorErrorDomain Code 2”

162,351 results found

Post

Replies

Boosts

Views

Activity

Reply to How do I save and load an array into a table view using singleton database option?
Hello,I don't have a first view in navigation referenced as ViewController.I did find the problem though.The problem actually was that I wasn't calling the data from the database.I have 2 buttons in my main view, one is for loading a table with myRoster and one is for loading a table with draftOrder.I didn't ever show the code with these two buttons but I just changed the code to pull data from the database:The problem actually was that I wasn't calling the data from the database. I have 2 buttons in my main view, one is for loading a table with myRoster and one is for loading a table with draftOrder. I didn't ever show the code with these two buttons but I just changed the code to pull data from the database:Thank you for your help.
Jan ’20
Trying to build an iOS 9/watchOS 2 app for AdHoc distribution but keep getting code signing issues
So I'm trying to build my app for distribution for AdHoc beta testing, but I keep running into code signing issues. Building and running on decide (both phone and watch) work fine, but when I try to create an AdHoc distribution build, I run into this error:error: Embedded binary is not signed with the same certificate as the parent app. Verify the embedded binary target's code sign settings match the parent app's. Embedded Binary Signing Certificate: Not Code Signed Parent App Signing Certificate: iPhone Distribution: [My signing certificate]I get this error during the step where it is validating the embedded WatchKit App binary.I've tried to follow the instructions creating a Distribution signing certificate, installing it, and then creating AdHoc provisioning profiles for each of my iOS app, the WatchKit app, and the WatchKit extension. I set the code signing identity for the release build setting for all three to my distribution certificate, and I've set the provisioning
20
0
13k
Jul ’15
Getting two searchBar in iOS 26.0
Hi team, while i am using below code, i am getting two searchBar at top & bottom. Kindly refer below code & attached image Code: override func viewDidLoad() { super.viewDidLoad() title = Test Data setupSearchData() DispatchQueue.main.asyncAfter(deadline: .now() + 2) { self.setupSearchData() } } func setupSearchData() { navigationController?.navigationBar.prefersLargeTitles = false let searchController = UISearchController(searchResultsController: nil) navigationItem.searchController = searchController } It is working fine for other iOS versions. In my real useCase, i will refresh screen after API completed, then this issue occurred in my app.
2
0
161
Jul ’25
two-factor authentication
Hi. I can't enable two-factor authentication for my account. There is no such option on my iphone and ipad. When I try to enable it on my macbook pro, it show me the the message that two-factor authentication is not available for my apple id this time.I called to apple support but they said that I have deleveloper account and I should ask my quetion hereThanks
0
0
355
Sep ’16
Can't convert to Swift 2
I spent 4 hours last night attempting to solve these two errors that I get when trying to convert my swift 1.2 project to swift 2. I have tried a variety of answers that I came across while googeling involving duplicate certificates, bitcode settings, compiler optimization level's etc. I'm still having no luck converting my project. Any help would be much appreciated.Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc failed with exit code 1ditto: can't get real path for source '/Users/tracepomplun/Library/Developer/Xcode/DerivedData/joann-abcfteuqtvsfmjbkykjrgrttcxsq/Build/Intermediates/SwiftMigration/joann/Intermediates/joann.build/Debug-iphonesimulator/joann.build/Objects-normal/i386/joann-Swift.h'Command /usr/bin/ditto failed with exit code 1
3
0
1.3k
Sep ’15
Two factor verification problem.
I have a huge problem with two factor verification for Apple ID. I decided to install El Capitan Public Beta on my second Mac. When it was installed it offered me to turn on this two factor verification for my Apple ID. So I accepted it. Later I decided to bring my Yosemite back and delete El Capitan's Public Beta and then I got a trouble. I couldn't sign in with iTunes on all my devices because it showed me an error Error description not available. So I went to Apple ID managing web site trying turn two factor verification off but it started asking for verification code which I couldn't receive. So I asked it to sent an SMS or call to my phone which it asked before. But I didn't receive anything. After that I realized that that's all because two factor verification is not available for my country (Ukraine) yet, but why was it offering me that then. So I don't know what to do with that now. I still don't have permission to my iTunes, AppStore, Apple Music. Please h
10
0
4.7k
Aug ’15
Transaction.latest(for:) returns nil in StoreKit 2
Using the Implementing a Store In Your App Using the StoreKit API sample code, I've successfully integrated my new APP with StoreKit 2. There is one problem though: when I call the method Transaction.latest(for:) to get the user’s latest transaction, it always returns nil. Here's the code snippet: guard let result = await Transaction.latest(for: myProductId) else { return false } Is this a bug with StoreKit 2, or am I doing something wrong? This happens on a physical device, running from Xcode. Thanks in advance.
4
0
2.2k
Sep ’21
AVFoundationErrorDomain Code=-11800 NSOSStatusErrorDomain Code=-42800
Hello I am working on a project that supports Download and Play on Fairplay encrypted videos and I have the above error. Error Domain=AVFoundationErrorDomain Code=-11800 The operation could not be completed UserInfo={NSLocalizedFailureReason=An unknown error occurred (-42800), NSLocalizedDescription=The operation could not be completed, NSUnderlyingError=0x28189d470 {Error Domain=NSOSStatusErrorDomain Code=-42800 (null)}} The weird is that the first 2 days the downloaded asset plays correctly, but after 2 days I get this error and the stream isn't working. (Might have nothing to do with the problem) The file is .movpkg and the path is correct. I would like to know what -42800 means. And how can I fix it.
1
0
4.4k
Jul ’20
2 queries on Dialer app..
I have 2 generic queries based on a mobile dialer concept which I am having for iOS. So before I start the coding I need you experts advice here... Your views and suggestions will be appreciable.This app about which I am asking is on an iOS phone dialer concept.1) Is it possible for me to code a dialer app which can fetch the call logs from the phone and display on my app2) If the above can be done, is it possible to dial back to a number from the call log displayed on my app. Will that call mature and dial out by getting passed on to the phone from the app?
0
0
191
Sep ’15
Reply to How do I save and load an array into a table view using singleton database option?
Hello,I don't have a first view in navigation referenced as ViewController.I did find the problem though.The problem actually was that I wasn't calling the data from the database.I have 2 buttons in my main view, one is for loading a table with myRoster and one is for loading a table with draftOrder.I didn't ever show the code with these two buttons but I just changed the code to pull data from the database:The problem actually was that I wasn't calling the data from the database. I have 2 buttons in my main view, one is for loading a table with myRoster and one is for loading a table with draftOrder. I didn't ever show the code with these two buttons but I just changed the code to pull data from the database:Thank you for your help.
Replies
Boosts
Views
Activity
Jan ’20
Trying to build an iOS 9/watchOS 2 app for AdHoc distribution but keep getting code signing issues
So I'm trying to build my app for distribution for AdHoc beta testing, but I keep running into code signing issues. Building and running on decide (both phone and watch) work fine, but when I try to create an AdHoc distribution build, I run into this error:error: Embedded binary is not signed with the same certificate as the parent app. Verify the embedded binary target's code sign settings match the parent app's. Embedded Binary Signing Certificate: Not Code Signed Parent App Signing Certificate: iPhone Distribution: [My signing certificate]I get this error during the step where it is validating the embedded WatchKit App binary.I've tried to follow the instructions creating a Distribution signing certificate, installing it, and then creating AdHoc provisioning profiles for each of my iOS app, the WatchKit app, and the WatchKit extension. I set the code signing identity for the release build setting for all three to my distribution certificate, and I've set the provisioning
Replies
20
Boosts
0
Views
13k
Activity
Jul ’15
Linux Swift 2
Where can I download the Swift 2 for Linux?)
Replies
2
Boosts
0
Views
927
Activity
Jun ’15
error code
API interface will return these error, does anyone know what the code means. 2 24 50 61 310 567
Replies
1
Boosts
0
Views
606
Activity
Jul ’24
Getting two searchBar in iOS 26.0
Hi team, while i am using below code, i am getting two searchBar at top & bottom. Kindly refer below code & attached image Code: override func viewDidLoad() { super.viewDidLoad() title = Test Data setupSearchData() DispatchQueue.main.asyncAfter(deadline: .now() + 2) { self.setupSearchData() } } func setupSearchData() { navigationController?.navigationBar.prefersLargeTitles = false let searchController = UISearchController(searchResultsController: nil) navigationItem.searchController = searchController } It is working fine for other iOS versions. In my real useCase, i will refresh screen after API completed, then this issue occurred in my app.
Replies
2
Boosts
0
Views
161
Activity
Jul ’25
Xbox Elite 2
Will we be able to use the Xbox elite 2 on the next iOS update
Replies
1
Boosts
0
Views
1.1k
Activity
Jun ’20
two-factor authentication
Hi. I can't enable two-factor authentication for my account. There is no such option on my iphone and ipad. When I try to enable it on my macbook pro, it show me the the message that two-factor authentication is not available for my apple id this time.I called to apple support but they said that I have deleveloper account and I should ask my quetion hereThanks
Replies
0
Boosts
0
Views
355
Activity
Sep ’16
Can't convert to Swift 2
I spent 4 hours last night attempting to solve these two errors that I get when trying to convert my swift 1.2 project to swift 2. I have tried a variety of answers that I came across while googeling involving duplicate certificates, bitcode settings, compiler optimization level's etc. I'm still having no luck converting my project. Any help would be much appreciated.Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc failed with exit code 1ditto: can't get real path for source '/Users/tracepomplun/Library/Developer/Xcode/DerivedData/joann-abcfteuqtvsfmjbkykjrgrttcxsq/Build/Intermediates/SwiftMigration/joann/Intermediates/joann.build/Debug-iphonesimulator/joann.build/Objects-normal/i386/joann-Swift.h'Command /usr/bin/ditto failed with exit code 1
Replies
3
Boosts
0
Views
1.3k
Activity
Sep ’15
Two factor verification problem.
I have a huge problem with two factor verification for Apple ID. I decided to install El Capitan Public Beta on my second Mac. When it was installed it offered me to turn on this two factor verification for my Apple ID. So I accepted it. Later I decided to bring my Yosemite back and delete El Capitan's Public Beta and then I got a trouble. I couldn't sign in with iTunes on all my devices because it showed me an error Error description not available. So I went to Apple ID managing web site trying turn two factor verification off but it started asking for verification code which I couldn't receive. So I asked it to sent an SMS or call to my phone which it asked before. But I didn't receive anything. After that I realized that that's all because two factor verification is not available for my country (Ukraine) yet, but why was it offering me that then. So I don't know what to do with that now. I still don't have permission to my iTunes, AppStore, Apple Music. Please h
Replies
10
Boosts
0
Views
4.7k
Activity
Aug ’15
watchOS beta 2?
Anybody knows if wachtOS beta 2 comes today?
Replies
3
Boosts
0
Views
1.3k
Activity
Jun ’15
Multitasking with any two apps
Will appLe ever make it so you can multi task with any two apps
Replies
4
Boosts
0
Views
641
Activity
Sep ’15
Transaction.latest(for:) returns nil in StoreKit 2
Using the Implementing a Store In Your App Using the StoreKit API sample code, I've successfully integrated my new APP with StoreKit 2. There is one problem though: when I call the method Transaction.latest(for:) to get the user’s latest transaction, it always returns nil. Here's the code snippet: guard let result = await Transaction.latest(for: myProductId) else { return false } Is this a bug with StoreKit 2, or am I doing something wrong? This happens on a physical device, running from Xcode. Thanks in advance.
Replies
4
Boosts
0
Views
2.2k
Activity
Sep ’21
AVFoundationErrorDomain Code=-11800 NSOSStatusErrorDomain Code=-42800
Hello I am working on a project that supports Download and Play on Fairplay encrypted videos and I have the above error. Error Domain=AVFoundationErrorDomain Code=-11800 The operation could not be completed UserInfo={NSLocalizedFailureReason=An unknown error occurred (-42800), NSLocalizedDescription=The operation could not be completed, NSUnderlyingError=0x28189d470 {Error Domain=NSOSStatusErrorDomain Code=-42800 (null)}} The weird is that the first 2 days the downloaded asset plays correctly, but after 2 days I get this error and the stream isn't working. (Might have nothing to do with the problem) The file is .movpkg and the path is correct. I would like to know what -42800 means. And how can I fix it.
Replies
1
Boosts
0
Views
4.4k
Activity
Jul ’20
Reply to iOS: "Sign in with Apple" state does not restore after app restart
ps: i'm getting two conflicting messages: Credential State request returned with error: Error Domain=AKAuthenticationError Code=-7073 this is printed to the console and credentialState 2, error Domain=com.apple.AuthenticationServices.AuthorizationError Code=1000 (null) this is the error message i'm getting back in the callback (different codes? why?)
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’20
2 queries on Dialer app..
I have 2 generic queries based on a mobile dialer concept which I am having for iOS. So before I start the coding I need you experts advice here... Your views and suggestions will be appreciable.This app about which I am asking is on an iOS phone dialer concept.1) Is it possible for me to code a dialer app which can fetch the call logs from the phone and display on my app2) If the above can be done, is it possible to dial back to a number from the call log displayed on my app. Will that call mature and dial out by getting passed on to the phone from the app?
Replies
0
Boosts
0
Views
191
Activity
Sep ’15