We have a valid DUNS number for our organization, now a subsidiary developed an app and they want to publish it using their apple developer account (unrelated to ours) but they can't because we own the main DUNS.
We must share the DUNS with them? Is it enough? Is it the correct behaviour?
The subsidiary must have access to our account to publish the app? (We don't want)
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I need to read the tags assigned to a file, if I use the code shown below on cli tools projects everything works fine, the identical code executed from sandboxed apps returns only the first element
NSDictionary<NSURLResourceKey, id>* dict = [[NSURL fileURLWithPath:@"absolute_file_path"] resourceValuesForKeys:@[NSURLTagNamesKey] error:nil];
NSLog(@"Result %@", dict);
The same with swift, running the code from playground the result is correct, running it from swift sandboxed app only the first element is returned
Is this a bug?
I'm maintaining a very old Obj-c app using the very useful FSCopyObjectAsync
and FSMoveObjectAsync APIs to make async copy with progress info
(including the throughput)
Now I must drop compatibility with 10.9 and I
would to replace these APIs (consider they are no longer available with
Swift), but Apple deprecated them without a replacement, any hints?
I found the C API copyfile, it doesn't return the throughput and the fixed read buffer size (65k) is ridicolous because copy is very slow compared to FSCopyObjectAsync.
I would avoid to fork copyfile...
Do you know some other more Apple-like API similar to FSCopyObjectAsync?