Search results for

dsym file

75,662 results found

Post

Replies

Boosts

Views

Activity

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
447
May ’18
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
747
Aug ’24
Reply to Lots of warnings when building with Xcode 7 with 3rd party libraries
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;
Sep ’15
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
How to create .ipa file from Xcode project file
Hello:I am using Xcode 11.3.1.I have searched far and wide on the internet and on the forums to find a way to create an .ipa file from my mac OS project. The reason is that i want to use Apple transporter to upload my build to app store connect.I have resorted to using the apple transpotrer because following the Xcode Product --> Archive --> Organizer --> Upload process ends up with a .app file on my desktopAll the suggestions I follow only create an .app file which the transporter rejects.Can anyone point me to a reference that gives a clear explanation? Most of the ones I found and tried ends up with the same .app file.Thanks.
9
0
28k
Mar ’20
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
Lost files
Recently, some of my files went lost. Particularly those that had been recently created or recently opened. Only the files are lost, the folder are still there, empty. When I open Word, I can see the name of the missing files in 'recents', but I am unable to open them (I get a message saying the file is deleted or I don't have access to it). I have tried searching for them on Finder with no result. I have also already tried: Unticking the Finder thing in my iCloud Checking my iCloud (empty). I didn't really use it before, but it was worth trying. Doing the command + shift to unhide documents Right clicking on the document in recent I also tried recovering deleted files using Disk drill and nothing.
0
0
354
Mar ’21
Finder File Previews lock files on SMB shares
I've developed a new Quicklook data-based preview extension for a custom file type that generates an image preview of the file. I previously used a Quick Look generator plug-in but support for it was deprecated and now removed in macOS Sequoia. My app opens files using a open(url.path, O_RDWR | O_NONBLOCK | O_EXLOCK) call. The locking flags are used to prevent other clients from writing the file if it's already open. I discovered that when Finder is showing the “large” file previews (such as when in column or gallery modes) from a SMB share, the open call fails with EWOULDBLOCK as if the file is locked. It does work just fine on local files. Opening with O_SHLOCK also has the issue. Surprisingly it does work just fine for previews that return Plain Text data instead of Image data. Using the lsof command, it seems like the Quicklook process has some kind of lock on the file. This is the output of the lsof command: COMMAND PID USER FD TYPE
8
0
724
Dec ’24
Rename File without entering an file extension
Xcode 7.3.1, Swift 2.2The code I have below is renaming the file as expected. My issue is that I would like to enter the New File Name without an extension in the Alert text input field. Then once the user presses Yes, the file extension m4u gets added to the new name and ultimately rename the file New File Name.m4u. I do not want the user to have to deal with file extensions.Any assistance would be greatly appreciated.....func askToRename(row:Int) { let recording = self.arrayRecordings[row] let recordingURL = self.arrayRecordingsURL[row] let alert = UIAlertController(title: Rename, message: Rename Recording (recording)?, preferredStyle: .Alert) alert.addAction(UIAlertAction(title: Yes, style: .Default, handler: {[unowned alert] action in print(yes was tapped (self.arrayRecordingsURL[row])) if let textFields = alert.textFields{ let tfa = textFields as [UITextField] let text = tfa[0].text let url = NSURL(fileURLWithPath: text!) self.renameRecording(recordin
2
0
5.5k
Aug ’16