Questions tagged [osstatus]
11 questions
13
votes
2 answers
Unknown underlying OSStatus error -16364 when using AVAssetWriter
I'm building a video export feature for one of my apps. In essence, the video is a series of one of six different images lasting for different (short) durations.
The export works fine when I export something containing 283 images of varying…

Linuxios
- 34,849
- 13
- 91
- 116
10
votes
1 answer
iOS Keychain - what is the difference between kSecClassGenericPassword and kSecClassInternetPassword?
I have some code that stores data in keychain. The code is working during unit testing. The value that I store is Data However, when I specify
kSecClass : kSecClassGenericPassword, I get OSStatus 0 - success
kSecClass : kSecClassInternetPassword,…

Alex Stone
- 46,408
- 55
- 231
- 407
6
votes
2 answers
Xcode 10 won't create a developer signing certificate, get OSStatus error -2147416032
I'm a newbie to Xcode 10 and tried to create a stickers app using Automatic Signing and logged in with a free appleID account. In the app target, the status for the certificate says that it couldn't be completed (OSStatus error -2147416032.) and no…

News
- 73
- 4
5
votes
1 answer
OSStatus Code -1009, com.apple.LocalAuthentication
I'm trying to test encryption using the iOS keychain.
Domain=com.apple.LocalAuthentication Code=-1009 "ACL operation is not allowed: 'od'" UserInfo={NSLocalizedDescription=ACL operation is not allowed: 'od'}
This is my test code:
func…

Stephen Furlani
- 6,794
- 4
- 31
- 60
2
votes
1 answer
Cannot password in SSKeychain in Xcode 8
When i'm trying to save an Api Key to SSKeychain by
[SSKeychain setPassword:strApiKey forService:[[NSBundle mainBundle] bundleIdentifier] account:@"payeverAuthKey" error:&error];
i get following:
Error Domain=com.samsoffes.sskeychain Code=-34018…

Ivan Androsenko
- 608
- 6
- 15
1
vote
0 answers
Unable to sideload iOS app on iPhone 7plus OSStatus error -2147416032
I am unable to sideload my app on my iPhone 7+.
ENV: Xcode 10.2.1,iPhone 7+ iOS:12.4, FREE Developer Account (I do not have a paid Developer Account)
Errors (Targets->General->Signing):
- Operation couldn't be completed (OSStatus error…

RSA Anon
- 51
- 2
1
vote
1 answer
I am downloading an audio file and saving it in directory but I couldn't play it. (OSStatus error 2003334207.)
Here is the code where I am downloading
if let audioUrl = URL(string: UrlTextfield.text!) {
// then lets create your document folder url
let documentsDirectoryURL = FileManager.default.urls(for: .documentDirectory,…

Nov
- 11
- 2
1
vote
2 answers
SwiftyDropBox OSStatus error 10814 Swift 3
I've been researching all over trying to fix this issue to no avail. I followed the SwiftyDropBox tutorial thoroughly and had everything working. It's now not working and I'm not sure why. Based on this post and this link, the error is supposed to…

Seapoe
- 459
- 4
- 15
1
vote
0 answers
OSStatus always returns -34018 in Xcode 8 unit tests
I am running few unit tests in my framework project (target is .framework) where I am storing/fetching some data to/from keychain and all my unit tests were working as expected but all of my unit tests are started failing after I upgrade my xcode to…

Ravi Kiran
- 219
- 3
- 14
0
votes
1 answer
ITLibrary: The operation couldn’t be completed. (OSStatus error 7011.)
Usually, initializing ITLibrary works like a charm.
But when calling
NSError *error = nil;
ITLibrary *library = [ITLibrary libraryWithAPIVersion:"@1.0" error:&error];
on a customer's machine, I get a The operation couldn’t be completed. (OSStatus…

Hendrik
- 5,085
- 24
- 56
0
votes
1 answer
Why is Xcode complaining when using Mac Catalyst? OSError -10670
I've made an app for iOS 14 for iPhone and iPad. When I try to build for macOS as well by checking on the magic Mac box (in Deployment Info, in target settings), it builds: but when I run the app, I get this:
The operation couldn't be completed…

Michael Rogers
- 1,318
- 9
- 22