NSOutlineView - separator lines

2015-03-27 Thread Alex Kac
I'm trying to get rid of NSOutlineView horizontal separator lines. I've tried the following with no luck. self.outlineView.gridStyleMask = NSTableViewGridNone; self.outlineView.gridColor = [NSColor clearColor]; self.outlineView.intercellSpacing = NSZeroSize;

Re: NSOutlineView - separator lines

2015-03-27 Thread Roland King
On 27 Mar 2015, at 14:34, Alex Kac a...@webis.net wrote: I'm trying to get rid of NSOutlineView horizontal separator lines. I've tried the following with no luck. self.outlineView.gridStyleMask = NSTableViewGridNone; self.outlineView.gridColor = [NSColor clearColor];

How to Extend Swift Dictionary?

2015-03-27 Thread Charles Jenkins
Does anyone know of a good tutorial on how to extend the generic dictionary class in Swift? I can add whatever I want to a typed dictionary, but I haven’t figured out the right syntax to add extensions generically. --  Charles ___ Cocoa-dev mailing

Re: How to Extend Swift Dictionary?

2015-03-27 Thread Kyle Sluder
On Fri, Mar 27, 2015, at 05:16 AM, Charles Jenkins wrote: Does anyone know of a good tutorial on how to extend the generic dictionary class in Swift? I can add whatever I want to a typed dictionary, but I haven’t figured out the right syntax to add extensions generically. The type parameters

All of a sudden, app security exception?

2015-03-27 Thread Rick Mann
So, I'm working along on a little OS X app, and everything is fine. I modify a tiny bit of code (rearranging some if statements in a method, and suddenly I'm getting an exception. I didn't set or change anything related to code signing. I did, just after hitting run, go over to Safari and check

Re: All of a sudden, app security exception?

2015-03-27 Thread Kyle Sluder
On Fri, Mar 27, 2015, at 03:43 PM, Rick Mann wrote: So, I'm working along on a little OS X app, and everything is fine. I modify a tiny bit of code (rearranging some if statements in a method, and suddenly I'm getting an exception. I didn't set or change anything related to code signing. I

Re: All of a sudden, app security exception?

2015-03-27 Thread Rick Mann
On Mar 27, 2015, at 15:05 , Kyle Sluder k...@ksluder.com wrote: On Fri, Mar 27, 2015, at 03:43 PM, Rick Mann wrote: So, I'm working along on a little OS X app, and everything is fine. I modify a tiny bit of code (rearranging some if statements in a method, and suddenly I'm getting an

Help Bundle Trouble...

2015-03-27 Thread Peters, Brandon
Hello, I am trying to integrate my help bundle into my application. According to the Help Book Documentation from Apple, I needed to add the following two strings to my Info.plist file, and I did: keyCFBundleHelpBookFolder/key stringArnoldTransformer.help/string keyCFBundleHelpBookName/key

Re: Help Bundle Trouble...

2015-03-27 Thread Jerry Krinock
On 2015 Mar 27, at 16:26, Peters, Brandon bap...@my.fsu.edu wrote: I copied the .help bundle into my project by right-clicking Supporting Files Add Files to Project Name, etc. Yet it seems my application still cannot find the content. Any pointers from experience? 1. Look inside your

Re: Help Bundle Trouble...

2015-03-27 Thread Peters, Brandon
Jerry, In my project folder I am not seeing my .app bundle (this is embarrassing). On Mar 27, 2015, at 10:06 PM, Jerry Krinock je...@ieee.org wrote: On 2015 Mar 27, at 16:26, Peters, Brandon bap...@my.fsu.edu wrote: I copied the .help bundle into my project by right-clicking Supporting

Re: All of a sudden, app security exception?

2015-03-27 Thread Jens Alfke
On Mar 27, 2015, at 3:20 PM, Rick Mann rm...@latencyzero.com wrote: Okay, but something is still suddenly different. I didn't change my exception configuration. Some change in your compiled code caused a different code path through the OS's code-signing verification code, and that code

Re: Help Bundle Trouble...

2015-03-27 Thread Peters, Brandon
Jerry, I found the .app bundle in the derived data folder. The help is not making it into the resources folder for the bundle. On Mar 27, 2015, at 10:20 PM, Peters, Brandon bap...@my.fsu.edu wrote: Jerry, In my project folder I am not seeing my .app bundle (this is embarrassing). On

Re: Help Bundle Trouble...

2015-03-27 Thread Peters, Brandon
Roland/Jerry/others, I got it to work. I had a few strings wrong between my app’s Info.plist and the help book’s Info.plist files. Correcting those solved the issue. Thank you for pointing me in the right direction. On Mar 28, 2015, at 12:59 AM, Roland King r...@rols.org wrote: On 28 Mar

Re: Help Bundle Trouble...

2015-03-27 Thread Jerry Krinock
On 2015 Mar 27, at 19:39, Peters, Brandon bap...@my.fsu.edu wrote: I found the .app bundle in the derived data folder. It should not be there. Delete it and see if it reappears during the next build. The help is not making it into the resources folder for the bundle. For something to

Re: Help Bundle Trouble...

2015-03-27 Thread Roland King
On 28 Mar 2015, at 12:50, Jerry Krinock je...@ieee.org wrote: On 2015 Mar 27, at 19:39, Peters, Brandon bap...@my.fsu.edu wrote: I found the .app bundle in the derived data folder. It should not be there. Delete it and see if it reappears during the next build. Yes it should be