Re: Cocoa-dev Digest, Vol 16, Issue 63

2019-07-26 Thread Kirk Kerekes via Cocoa-dev
> what I really want is to do is drag a couple of URLs into System Preferences? > ?Full Disk Access? list, and that one accepts only lists of URLs, as far as I > know. > > Now, I want it to look like a user is only dragging an icon of my application > (which he/she really does), but applicatio

Need for Swift

2019-10-11 Thread Kirk Kerekes via Cocoa-dev
> On Oct 11, 2019, at 7:55 PM, cocoa-dev-requ...@lists.apple.com wrote: > > Me, I still don?t understand why, given the long history of support at > Apple/NeXT for C++ and the maturity of the compilers available, there is any > need for Swift. But there it is. It is my inference that Swift aro

Cocoa dylib access by C program

2020-11-13 Thread Kirk Kerekes via Cocoa-dev
Change your .c files to .m. Then you can use objective-c calls _in_ your C code. Objective C is a proper superset of C, and so you just need to inform the compiler of your intent by changing the file extension(s). Kirk Kerekes (iPhone) > Message: 1 > Date: Fri, 13 Nov 2020 11:16:23 -0800 >

Re: Indexing broken for one project

2022-02-12 Thread Kirk Kerekes via Cocoa-dev
Sort of straw-grasping I would try with Xcode under these circumstances… Try changing the target CPU/OS setting to something else, build, and see if the indexing works. If it does, make the minimal changes needed to appropriately build your target. If it doesn’t, discard straw. Kirk Kerekes