|
Where is my crash log?
Console.app told me:
default 22:57:28.157905+0700 ReportCrash Saved crash report for chronyd[15863] version 0 to chronyd_2019-12-14-225728_Spinat.crash
But I cannot find this.
Where should I
Console.app told me:
default 22:57:28.157905+0700 ReportCrash Saved crash report for chronyd[15863] version 0 to chronyd_2019-12-14-225728_Spinat.crash
But I cannot find this.
Where should I
|
By
Gerriet M. Denkmann
·
#1136
·
|
|
[OT] Cocoa Developer Needed
I’m looking for a macOS developer to join our team in Northern NJ. This is for mid-level candidates or higher.
Candidates must be well versed or fluent in the following:
Objective-C/C
SQL
I’m looking for a macOS developer to join our team in Northern NJ. This is for mid-level candidates or higher.
Candidates must be well versed or fluent in the following:
Objective-C/C
SQL
|
By
Sandor Szatmari
·
#1135
·
|
|
Re: Drag & Drop, a lifelong curse
I just thought you might know. It's too complex for me to rejigger it all just to find that answer, and I have it working now, so I don't care. :)
--
Steve Mills
Drummer, Mac geek
I just thought you might know. It's too complex for me to rejigger it all just to find that answer, and I have it working now, so I don't care. :)
--
Steve Mills
Drummer, Mac geek
|
By
Steve Mills
·
#1134
·
|
|
[OT] Cocoa Developer Needed
I’m looking for a macOS developer to join our team in Northern NJ. This is for mid-level candidates or higher.
Candidates must be well versed or fluent in the following:
Objective-C/C
SQL
I’m looking for a macOS developer to join our team in Northern NJ. This is for mid-level candidates or higher.
Candidates must be well versed or fluent in the following:
Objective-C/C
SQL
|
By
Sandor Szatmari
·
#1133
·
|
|
Re: Drag & Drop, a lifelong curse
I suspect you can answer that quicker than me.
--
Shane Stanley <sstanley@...>
<www.macosxautomation.com/applescript/apps/>, <latenightsw.com>
I suspect you can answer that quicker than me.
--
Shane Stanley <sstanley@...>
<www.macosxautomation.com/applescript/apps/>, <latenightsw.com>
|
By
Shane Stanley
·
#1132
·
|
|
Re: Drag & Drop, a lifelong curse
Does that give you the multiple images thing where different destinations can rearrange the images in stacks, grids, or whatever? My drag source is a collection view or a table view, so the initial
Does that give you the multiple images thing where different destinations can rearrange the images in stacks, grids, or whatever? My drag source is a collection view or a table view, so the initial
|
By
Steve Mills
·
#1131
·
|
|
Re: Drag & Drop, a lifelong curse
Maybe I'm missing something, but can't you just use this:
[[NSPasteboard generalPasteboard] clearContents];
[[NSPasteboard generalPasteboard] writeObjects:@[url]];
--
Shane Stanley
Maybe I'm missing something, but can't you just use this:
[[NSPasteboard generalPasteboard] clearContents];
[[NSPasteboard generalPasteboard] writeObjects:@[url]];
--
Shane Stanley
|
By
Shane Stanley
·
#1130
·
|
|
Re: Drag & Drop, a lifelong curse
After just trying all kinds of random crap, I got it to work. Turns out, if you call [url pasteboardPropertyListForType:NSPasteboardTypeFileURL], you can't use that with [pbItem setPropertyList:thing
After just trying all kinds of random crap, I got it to work. Turns out, if you call [url pasteboardPropertyListForType:NSPasteboardTypeFileURL], you can't use that with [pbItem setPropertyList:thing
|
By
Steve Mills
·
#1129
·
|
|
Drag & Drop, a lifelong curse
OK, so after "modernizing" my app to add multiple drag items (flavor NSPasteboardTypeFileURL) to the drag clipboard instead of just one with multiple flavors (NSFilenamesPboardType and
OK, so after "modernizing" my app to add multiple drag items (flavor NSPasteboardTypeFileURL) to the drag clipboard instead of just one with multiple flavors (NSFilenamesPboardType and
|
By
Steve Mills
·
#1128
·
|
|
Re: How to return data for NXSMLParserDelegate's -parser:resolveExternalEntityName:systemID:
Thanks for this. I ended up pre- and post-processing entities that aren't normally handled by the parser or the delegate in other places, because I simply want them to persist. Yeah, NSXMLParser and
Thanks for this. I ended up pre- and post-processing entities that aren't normally handled by the parser or the delegate in other places, because I simply want them to persist. Yeah, NSXMLParser and
|
By
Steve Mills
·
#1127
·
|
|
Re: How to return data for NXSMLParserDelegate's -parser:resolveExternalEntityName:systemID:
IRC, NSXMLParser is pretty vanilla, and back in the day it was recommended to use an xml parsing library directly rather than NSXMLParser if you have to work with anything except basic XML. Does not
IRC, NSXMLParser is pretty vanilla, and back in the day it was recommended to use an xml parsing library directly rather than NSXMLParser if you have to work with anything except basic XML. Does not
|
By
Keary Suska
·
#1126
·
|
|
Re: How to return data for NXSMLParserDelegate's -parser:resolveExternalEntityName:systemID:
I also wonder (thanks to the lack of documentation) if I should be supplying some standard urls in the allowedExternalEntityURLs property of the NSXMLParser. Would that cause the parser to
I also wonder (thanks to the lack of documentation) if I should be supplying some standard urls in the allowedExternalEntityURLs property of the NSXMLParser. Would that cause the parser to
|
By
Steve Mills
·
#1125
·
|
|
Re: How to return data for NXSMLParserDelegate's -parser:resolveExternalEntityName:systemID:
Same error. Thanks for the suggestion.
--
Steve Mills
Drummer, Mac geek
Same error. Thanks for the suggestion.
--
Steve Mills
Drummer, Mac geek
|
By
Steve Mills
·
#1124
·
|
|
Re: How to return data for NXSMLParserDelegate's -parser:resolveExternalEntityName:systemID:
Have you tried returning a full XML entity, e.g. "<string> </string>"?
That would be my next experiment...
--
Glenn L. Austin, Computer Wizard and Race Car Driver
Have you tried returning a full XML entity, e.g. "<string> </string>"?
That would be my next experiment...
--
Glenn L. Austin, Computer Wizard and Race Car Driver
|
By
Glenn L. Austin
·
#1123
·
|
|
How to return data for NXSMLParserDelegate's -parser:resolveExternalEntityName:systemID:
What is the expected value of the returned NSData supposed to be for this method? The docs says "An NSData object that contains the resolution of the given external entity." To me, that means that for
What is the expected value of the returned NSData supposed to be for this method? The docs says "An NSData object that contains the resolution of the given external entity." To me, that means that for
|
By
Steve Mills
·
#1122
·
|
|
Re: Crash in Apple code, not mine - what can I do?
Ugh - I don't have a whole lot of experience with CoreData, but it does add a whole lot of possible failure modes. It's tough that you can't reproduce the issue locally - any chance the customer will
Ugh - I don't have a whole lot of experience with CoreData, but it does add a whole lot of possible failure modes. It's tough that you can't reproduce the issue locally - any chance the customer will
|
By
Jon Gotow
·
#1121
·
|
|
Re: Crash in Apple code, not mine - what can I do?
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00006db9f91b0e58
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault:
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00006db9f91b0e58
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault:
|
By
Steve Mills
·
#1120
·
|
|
Re: Crash in Apple code, not mine - what can I do?
What's the actual cause of the crash? A segmentation fault (SIGSEGV) or some other memory error could be caused by you corrupting memory, handing NSDocumentController a bad object somehow, or some
What's the actual cause of the crash? A segmentation fault (SIGSEGV) or some other memory error could be caused by you corrupting memory, handing NSDocumentController a bad object somehow, or some
|
By
Jon Gotow
·
#1119
·
|
|
Crash in Apple code, not mine - what can I do?
A customer sent a crashlog that clearly shows Apple's code is what's crashing on 10.14.6. There's no way I can reproduce it. So what can I do? Just submit a bug to Apple with the crashlog (although
A customer sent a crashlog that clearly shows Apple's code is what's crashing on 10.14.6. There's no way I can reproduce it. So what can I do? Just submit a bug to Apple with the crashlog (although
|
By
Steve Mills
·
#1118
·
|
|
Playing a sequence of notes with AVAudioSourceNode
Is it possible to set up an AVAudioEngine and friends so I could feed it a sequence of MIDI notes and have it play that sequence, using an AVAudioSourceNode as the sound source? The AVAudioSourceNode
Is it possible to set up an AVAudioEngine and friends so I could feed it a sequence of MIDI notes and have it play that sequence, using an AVAudioSourceNode as the sound source? The AVAudioSourceNode
|
By
Steve Mills
·
#1117
·
|