Re: didPrint selector not called

2016-12-16 Thread Manoah F. Adams
to pass signatures in Swift, etc. For me in such case document:didPrint:contextInfo: gets called automatically and successfully. Manoah F. Adams mhfad...@federaladamsfamily.com federaladamsfamily.com/manoah This message is signed with a certificate and-or PGP key. Disregard any unverifie

Re: Showing Application Credits

2014-09-27 Thread Manoah F. Adams
h:path toPath: tempPath error:&error]; [[NSWorkspace sharedWorkspace] openFile: tempPath withApplication:@"TextEdit"]; Manoah F. Adams develo...@federaladamsfamily.com federaladamsfamily.com/developer === ___ Cocoa-dev mailing

Re: What exactly does NSDocumentController do when there's no NSDocument architecture?

2014-08-27 Thread Manoah F. Adams
whenever I create a new item or open an existing one. Manoah F. Adams federaladamsfamily.com/developer === ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact

Re: How to get SDK at compile time?

2014-08-12 Thread Manoah F. Adams
ocumented, so check it out (for me its at /usr/local/AvailabilityMacros.h). For my similar situations, I use the form. #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 // newer stuff #else // older stuff #endif Manoah F. Adams federal

Re: Resizing last column of NSTableView when it touches window border

2014-05-11 Thread Manoah F. Adams
27;t that cause this same issue with all the controls that are crammed into the edges of most windows? Manoah F. Adams === smime.p7s Description: S/MIME cryptographic signature ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Re: Serializing NSDictionary for network transfer

2014-05-08 Thread Manoah F. Adams
Hi, Thats great. I first learned about this method from Mike Ash's blog post : <https://mikeash.com/pyblog/friday-qa-2013-08-30-model-serialization- with-property-lists.html>. You will likely many more ideas there. Cheers! Manoah F. Adams federaladamsfamily.com/developer =

Re: Serializing NSDictionary for network transfer

2014-05-07 Thread Manoah F. Adams
NSNumber, etc.). (Also check for and adapt the newer api's (dataWithPropertyList:format:options:error: for instance) ). Manoah F. Adams This message is signed with a certificate and-or PGP key. Disregard any unverified messages from this address. === smime.p7s Description: S/MIME cryptographic signature ___

Re: Text messages

2013-11-23 Thread Manoah F. Adams
a friend to text me from his computer, and also having gmail auto forward emails from specific senders. Manoah F. Adams mhfad...@federaladamsfamily.com https://federaladamsfamily.com/developer This message is signed with a certificate and-or PGP key. Disregard any unverified m

Re: Crashing Problem calling postNotificationName

2013-09-12 Thread Manoah F. Adams
tification Programming Topics", page 4 developer.apple.com/library/ios/DOCUMENTATION/Cocoa/Conceptual/ Notifications/Notifications.pdf> I, personally, have always considered Notifications to be for non- essential, run-time only communication. Manoah F. Adams https://federaladamsfamily.c

Re: NSURLRequest returning bizarre page

2013-06-11 Thread Manoah F. Adams
Hello, [this message updated; previous message failed to get posted to the list] I noticed that the garbling is always "^M\n" -- indicating to me there is a newline/linebreak encoding issue. (especially since the server is a Microsoft monster). 2 ideas in order of likelihood: === (1) ==