Re: Removing object as observer in -willTurnIntoFault

2014-03-31 Thread Jerry Krinock
On 2014 Mar 29, at 11:44, Dado Colussi dado.colu...@gmail.com wrote: If you have undo/redo going on, then restart observing in awakeFromSnapshotEvents when NSSnapshotEventUndoDeletion flag is present. Check out the other flags, too. Thank you, Dado. I’d never noticed that method. I found

Re: Removing object as observer in -willTurnIntoFault

2014-03-31 Thread Kyle Sluder
On Mar 30, 2014, at 11:29 PM, Jerry Krinock je...@ieee.org wrote: NSSnapshotEventRollback, if this is due to a deleted object being resurrected because the deletion was unsaved. Don't do anything, because you will also receive -awakeFromInsert. Seems weird, but that's what happens. That

Re: Removing object as observer in -willTurnIntoFault

2014-03-31 Thread Jerry Krinock
On 2014 Mar 31, at 00:06, Kyle Sluder k...@ksluder.com wrote: That directly contradicts the -awakeFromInsert documentation, which states “This method is invoked only once in the object's lifetime.” If you are certain you are receiving -awakeFromInsert on the *same* NSManagedObject

Re: Removing object as observer in -willTurnIntoFault

2014-03-31 Thread Dado Colussi
On 31 March 2014 01:29, Jerry Krinock je...@ieee.org wrote: Question: You do some initialization, adding observers for example, in -awakeFromInsert and -awakeFromFetch, and you tear down these initializations, removing observers for example, in -willTurnIntoFault. Do you need to do anything

Re: Preparation for doing a bug report for CIPageCurlTransition

2014-03-31 Thread Kevin Meaney
Thanks for your input again. On 31 Mar 2014, at 05:38, Graham Cox graham@bigpond.com wrote: OK, I dug out the source code - it's a very old piece of work from when Core Image filters were first available. I'm definitely using Curl without a shadow. But, digging into the code,here's

Re : Re: Removing a file via NSFileWrapper

2014-03-31 Thread Colas B
Thanks for your help.br/I guess encountering such situations is part of the job... And I'm still learning it ;-)br/br/Colasa href=https://overview.mail.yahoo.com?.src=iOS;br/br/Envoyé depuis Yahoo Mail pour iPad/a ___ Cocoa-dev mailing list

Re: Ordered to-many relationship CoreDataGeneratedAccessors

2014-03-31 Thread Fritz Anderson
On 29 Mar 2014, at 3:11 AM, Rick Mann rm...@latencyzero.com wrote: I'm getting -[WireSegment replaceObjectInNodesAtIndex:withObject:]: unrecognized selector sent to instance When I try to send that message. This is one of the CoreDataGeneratedAccessors, for an ordered to-many

Re: Cocoa-dev Digest, Vol 11, Issue 170

2014-03-31 Thread Fritz Anderson
On 29 Mar 2014, at 2:42 PM, Rick Mann rm...@latencyzero.com wrote: Oh, thank you! My googling turned up all sorts of stuff for the old accessors, but I couldn't find anything about this. I wish they'd generate the stubs like they used to. On Mar 29, 2014, at 09:11 , Rick Aurbach

Core animation layers work on 10.7 but not 10.8 or 10.9

2014-03-31 Thread Bill Cheeseman
I wrote an application a couple of years ago that still runs perfectly on Mac OS X 10.7, 10.8 and 10.9. I built it with Xcode 3.x on 10.7. It uses core animation and layer hosting views. Now I have to update it for unrelated reasons. But when I build the same code with Xcode 5.1 on OS X 10.9,

Re: -awakeFromInsert can run once. (Was: Removing object as observer…)

2014-03-31 Thread Jerry Krinock
On 2014 Mar 31, at 02:29, Dado Colussi dado.colu...@gmail.com wrote: I don't start observers in -awakeFromInsert or -awakeFromFetch. I start them on demand, and in -awakeFromSnapshotEvents: with NSSnapshotEventUndoDeletion (I ignore the other flags). I think the best place to start

Re: Core animation layers work on 10.7 but not 10.8 or 10.9

2014-03-31 Thread Kevin Meaney
I think this problem might go beyond Core Animation, unless NSAnimation is using CoreAnimation under the hood. Apple's sample code Image Transition and Cocoa Slides both crash when built using Xcode 5.1 and run on 10.9.2. But built apps that apple provides with the sample code still work on

Re: Core animation layers work on 10.7 but not 10.8 or 10.9

2014-03-31 Thread Bill Cheeseman
On Mar 31, 2014, at 11:17 AM, Kevin Meaney k...@yvs.eu.com wrote: Apple's sample code Image Transition and Cocoa Slides both crash when built using Xcode 5.1 and run on 10.9.2. But built apps that apple provides with the sample code still work on 10.9.2. When built using Xcode 5.1 these

NSDateFormatter fails

2014-03-31 Thread D. Felipe Torres
Given the following code: NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDateFormat:@-MM-dd'T'HH:mm:ss]; NSLog(@Date from String: %@, [formatter dateFromString:@ 2013-09-08T00:36:40]); The log produces: Date from String: (null) For other strings from the same

Re: NSDateFormatter fails

2014-03-31 Thread Jens Alfke
On Mar 31, 2014, at 10:56 AM, D. Felipe Torres warorf...@gmail.com wrote: NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDateFormat:@-MM-dd'T'HH:mm:ss]; NSLog(@Date from String: %@, [formatter dateFromString:@ 2013-09-08T00:36:40]); The log produces: Date

Re: NSDateFormatter fails

2014-03-31 Thread D. Felipe Torres
I just pasted it from CodeRunner. I changed 00 for 0X where X is a number and it worked. On Mon, Mar 31, 2014 at 3:09 PM, Jens Alfke j...@mooseyard.com wrote: On Mar 31, 2014, at 10:56 AM, D. Felipe Torres warorf...@gmail.com wrote: NSDateFormatter *formatter = [[NSDateFormatter alloc]

Re: NSDateFormatter fails

2014-03-31 Thread Jens Alfke
Well, try parsing using -getObjectValue:forString:range:error: instead, so you get an error message. Also, try setting the locale of the formatter to en_US_POSIX so you don’t get any localization effects. (I just got both of these suggestions from “Parsing Date Strings” in Apple’s “Data

Re: NSDateFormatter fails

2014-03-31 Thread D. Felipe Torres
Shortly after I replied I tried using that locale and no luck. My code now looks like this: NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDateFormat:@-MM-dd'T'HH:mm:ss]; NSLocale *locale = [NSLocale localeWithLocaleIdentifier:@en_US_POSIX]; [formatter

Re: NSDateFormatter fails

2014-03-31 Thread Jens Alfke
What OS/version/SDK? ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription:

Re: Removing object as observer in -willTurnIntoFault

2014-03-31 Thread Sean McBride
On Mon, 31 Mar 2014 04:29:51 -0500, Dado Colussi said: Question: You do some initialization, adding observers for example, in -awakeFromInsert and -awakeFromFetch, and you tear down these initializations, removing observers for example, in -willTurnIntoFault. Do you need to do anything in

Re: Preparation for doing a bug report for CIPageCurlTransition

2014-03-31 Thread Bill Monk
CIPageCurlTransition's inputBacksideImage does work, but its scaling and/or interaction with the shading image seems under-documented (to me anyway), and as such, seems to behave oddly... But I can definitely get a visible backside image by tweaking your code a little (using

RE: Core animation layers work on 10.7 but not 10.8 or 10.9

2014-03-31 Thread Bill Monk
Apple's sample code Image Transition and Cocoa Slides both crash when built using Xcode 5.1 and run on 10.9.2 When built with 10.9 SDK, views using CIFilters need their layerUsesCoreImageFilters set to YES. Yeah, it bit me too...it's in the 10.9 release notes somewhere. But built apps

Re: Preparation for doing a bug report for CIPageCurlTransition

2014-03-31 Thread Kevin Meaney
Your comments have been really helpful. I've done two things to get everything to work: Firstly, I turned my triangle upside down, and I set alpha for black at 0.7 and for white 0.3. Now it is clear that everything works as it should. Many Thanks. Kevin On 31 Mar 2014, at 20:43, Bill Monk

Re: NSDateFormatter fails

2014-03-31 Thread Quincey Morris
On Mar 31, 2014, at 12:04 , D. Felipe Torres warorf...@gmail.com wrote: I found out it only fails under my current timezone: I went to stackoverflow to read the outcome, and for completeness I’ll report here that the above isn’t true. It doesn’t fail under your particular timezone. It fails

Re: Ordered to-many relationship CoreDataGeneratedAccessors

2014-03-31 Thread Gordon Apple
One thing you are missing, is that, as far as I know, the generated accessors are still broken. You have to write your own. I did find a set of macros someone wrote for this, but haven¹t tried them yet because I had already written many of my own sets of accessors. Two more things to watch out

Re: NSDateFormatter fails

2014-03-31 Thread Rick Mann
I missed the rest of this thread so I don't know what platform you're on, but recent OS X has new date/time manipulation functions that can help you with ensuring you're talking about a valid time. AFAIK, they're not yet in iOS (grr). On Mar 31, 2014, at 14:31 , Quincey Morris

Re: Ordered to-many relationship CoreDataGeneratedAccessors

2014-03-31 Thread Rick Mann
Good to know. Yeah, it was pointed out to me that they aren't generated (STILL? SERIOUSLY??), but I generated them and now it's all hunky-dory. I'll keep the other notes you mentioned in mind. Thanks! On Mar 31, 2014, at 16:05 , Gordon Apple g...@ed4u.com wrote: One thing you are missing, is

Re: Ordered to-many relationship CoreDataGeneratedAccessors

2014-03-31 Thread Sean McBride
On Mon, 31 Mar 2014 17:05:30 -0600, Gordon Apple said: One thing you are missing, is that, as far as I know, the generated accessors are still broken. You have to write your own. I did find a set of macros someone wrote for this, but haven1t tried them yet because I had already written many of

NSBox Border Width Property

2014-03-31 Thread Varun Chandramohan
Hi All, I have a view which has a NSBox. The view is designed and managed by IB and I am doing nothing from code. The NSBox is of type (primary, the way I want it), and border type is Line. When I use this, I get warning Border width requires NSCustomBox type and NSLineBorder type. To get rid

Re: NSBox Border Width Property

2014-03-31 Thread Graham Cox
On 1 Apr 2014, at 1:14 pm, Varun Chandramohan varun.chandramo...@wontok.com wrote: have a view which has a NSBox. The view is designed and managed by IB and I am doing nothing from code. The NSBox is of type (primary, the way I want it), and border type is Line. When I use this, I get

Re: NSBox Border Width Property

2014-03-31 Thread Varun Chandramohan
Hi Graham, I checked that before posting here. In Size Inspector for ³Box Margins (Horizontal) 0 (Vertical) 0 Border (Width) 0 (Radius) 0. That¹s what I am not able to understand where the problem is. - Varun On 1/04/2014 2:53 pm, Graham Cox graham@bigpond.com wrote: On 1 Apr 2014, at

Re: NSBox Border Width Property

2014-03-31 Thread Varun Chandramohan
Ok, Setting it to 1 solved it. Looks like it should not be 0. Regards, Varun On 1/04/2014 2:57 pm, Varun Chandramohan varun.chandramo...@wontok.com wrote: Hi Graham, I checked that before posting here. In Size Inspector for ³Box Margins (Horizontal) 0 (Vertical) 0 Border (Width) 0 (Radius) 0.

NSDictionary @synchronize to read multiple objects

2014-03-31 Thread Trygve Inda
I have an object with a dictionary property defined as: @property (nonatomic, retain) NSMutableDictionary* myDict; This gets set when it is received via an AppleEvent from another application. Multiple threads in the receiving app need to read (the threads never write, only read) from the

Re: NSDictionary @synchronize to read multiple objects

2014-03-31 Thread Jens Alfke
On Mar 31, 2014, at 10:16 PM, Trygve Inda cocoa...@xericdesign.com wrote: I need to be able to set a new myDict and not have it happen between the reading of different values from the dictionary by other threads. Don’t expose the dictionary in mutable form. You can’t make that thread-safe

Re: NSDictionary @synchronize to read multiple objects

2014-03-31 Thread Ken Thomases
On Apr 1, 2014, at 12:16 AM, Trygve Inda wrote: I have an object with a dictionary property defined as: @property (nonatomic, retain) NSMutableDictionary* myDict; This gets set when it is received via an AppleEvent from another application. Multiple threads in the receiving app

Re: NSDictionary @synchronize to read multiple objects

2014-03-31 Thread Ken Thomases
On Apr 1, 2014, at 12:25 AM, Jens Alfke wrote: On Mar 31, 2014, at 10:16 PM, Trygve Inda cocoa...@xericdesign.com wrote: I need to be able to set a new myDict and not have it happen between the reading of different values from the dictionary by other threads. Don’t expose the dictionary

tableViewSelectionDidChange does not fire on deselect

2014-03-31 Thread Ronald Hofmann
Hi all, I´m using tableViewSelectionDidChange to find out which row of myTableView was clicked. Works fine so far. I´m taking some action than. - (void)tableViewSelectionDidChange:(NSNotification *)notification { NSInteger row = [_tableView selectedRow]; NSLog(@„Row: %il, row);