Search results for

dsym file

77,671 results found

Post

Replies

Boosts

Views

Activity

remote files
Hello,I would like to implement something similar to AVAssetReferenceRestrictions.One case is AVAssetReferenceRestrictionForbidCrossSiteReference where references of a remote file to a remote file are not allowed. This means that the referencing file and the referenced file are remote relative to each other as well. How can I detect this case?TIAJan E.
Topic: UI Frameworks SubTopic: AppKit Tags:
0
0
258
Feb ’16
Create a "get files Window"which allows to import files
Hello,I am currently learnign OS development with Swift, I am new to OS development and the applicaiton I am building needs to allow the user to import a file or multiple files from the computer, and once they press Open Files a window should open to allow them to look for files, once found added to the app and they should display as icons just like you would expect. These will be mainly text files, .text, .java, .pdf, .c, etc. whats the best way to go about this?PS: Notice this would not be a file reader/viewer, its more like the app will open the user selected files and save their paths which I will later use for some other functionality.
Topic: UI Frameworks SubTopic: AppKit Tags:
4
0
421
Jan ’17
Get debug symbols for SwiftUI functions as well as app's
Hi, I have some crash reports which I want to symbolicate. When I do so (following Apple's guide, and many of the other ones you can find online) I always get a partially symbolicated crash report. By partially I mean it only symbolicates the calls to code belonging to my app, but not the lines belonging to native frameworks like SwiftUI. How can I symbolicate the lines in my crash report which belong to native iOS frameworks like SwiftUI? PD: I tried the native XCode way of symbolicating by dragging the crash report into the device's logs. I also tried extracting the dSYM file from the app's archive and then using the symbolicatecrash tool. Both work, but only partially.
0
0
651
May ’23
Remote files
Hello,I would like to implement something similar to AVAssetReferenceRestrictions.One case is AVAssetReferenceRestrictionForbidCrossSiteReference where references of a remote file to a remote file are not allowed. This means that the referencing file and the referenced file are remote relative to each other as well. How can I detect this case?TIAJan E.PS. This seems to be a difficult one. I've tried in two other forums already.
6
0
378
Feb ’16
What methods in what Framework to separate an audio file into two files?
I'm having trouble using SFSpeechRecognizer & SFSpeechRecognitionTask to show me the words from an audio file. I found a solution on stackoverflow to separate the audio file into smaller sizes. How would I do that programmatically using Swift for a macOS app Xcode project? I would prefer not to separate the file into smaller files. I will submit another post with more information for that.
3
0
771
Aug ’24
Disappearing files
I have an app that captures some data and stores it as XML files. Sometimes the app crashes (I am trying to find the cause of this).The issue I am having is that when the app crashes and then it is re-opened, it cannot find any of the XML files that have been previously created. BUT - if you reboot the iPhone or iPad, then all the previous files are there where they should be.I am looking for ideas as to why the files disappear until after a reboot.
5
0
451
May ’18
Reply to Warnings creating dSYM in Xcode beta 6
After trying all the solution posted previously, I have found one that appears to work for the static library I work with. - This is what I needed to change to Off to remove all the warningsPrecompile Prefix (Header GCC_PRECOMPILE_PREFIX_HEADER) = off- Many people disussed that dysm had to be turned off, I believe it is working with it enabledDebug Information Format (DEBUG_INFORMATION_FORMAT) = dwarf-with-dsym- Since the enable bitcode is really to enable markers, we can just turn it off to remove warningsEnable Bitcode (ENABLE_BITCODE) = NO- This flag is needed to all builds will actually embed the bitcodeOther C Flags (OTHER_CFLAGS) = -fembed-bitcode;
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’15
Reply to Debugging Big Sur kernel on inter-based macbook from Monterey on m1
Forget about what I have said earlier. I tried to migrate the python scripts from 2 to 3, and I tested the showallkexts command, it won't work. I managed to do it by simply DELETE the old python scripts folder, and copy the newer python tools from my Sonoma KDK to Catalina dSYM folders. sudo cp -r /Library/Developer/KDKs/KDK_14.2_23C5047e.kdk/System/Library/Kernels/kernel.development.dSYM/Contents/Resources/Python /Library/Developer/KDKs/KDK_10.15.7_19H1824.kdk/System/Library/Kernels/kernel.development.dSYM/Contents/Resources/ The showallkexts command works now with python3
Mar ’24
Reply to LLDB error: type for self cannot be reconstructed: type for typename
There are 3 projects in a workspace. The main project and two separate projects for two static libraries. Both static libs depend on a framework, a regular framework not a XCFramework. Everything is built from scratch, I own all the source code. The code for the framework is in a swift module. I set DWARF with dSYM on all the three projects, it was DWARF only for the libs, but no luck. I can debug the source code from the main project, it works just fine. However, the two static libraries contain the majority of the functionality and I can't debug it. I was adding logs here and there but it takes a lot of time.
Jan ’25
Accessing Files in iCloud Drive via Files app
I have an app which has defined a document type and is able to open such files with a given extension.This works perfectly for example with AirDrop or from Mail, but it does not work with the new Files app in iOS 11on a real device.It works in the simulator, there are two cases: If the URL of the file to open comes in via- (BOOL) application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)optionsI check if the file attributes are accessible. If so, I can use the file item directly, if not, I use[NSFileCoordinator coordinateReadingItemAtURL:options:error:byAccessor:],the file is downloaded from iCloud and I can process it using the new URL delivered by the result handler.On a real device this does not work - I get an error that I am not having the access rights to access the file attributes.If I am using the NSFileCoordinator, the result handler returns without an error, but trying to acces
3
0
3.4k
Oct ’17