Re: copy in WebView

2012-10-14 Thread Gerriet M. Denkmann
On 14 Oct 2012, at 03:26, Kyle Sluder k...@ksluder.com wrote: On Sat, Oct 13, 2012, at 01:19 PM, Andy Lee wrote: Unless I'm mistaken, Kyle meant the view hierarchy, not the inheritance hierarchy. In other words, if you go up the superview chain starting at the window's first responder, do

Re: copy in WebView

2012-10-14 Thread Heinrich Giesen
On 13.10.2012, at 21:00, Kyle Sluder wrote: Could you instead broaden your test to my WebView or any of its descendants is first responder? or simply use directly the WebView on the responderchain. Because I had similar problems like Gerriet concerning finding a selected string or zooming

Re: copy in WebView

2012-10-14 Thread Gerriet M. Denkmann
On 14 Oct 2012, at 16:07, Heinrich Giesen heinrich.gie...@t-online.de wrote: On 13.10.2012, at 21:00, Kyle Sluder wrote: Could you instead broaden your test to my WebView or any of its descendants is first responder? or simply use directly the WebView on the responderchain. Because I

Re: filtering an array of entities using NSPredicate

2012-10-14 Thread Koen van der Drift
On Sat, Oct 13, 2012 at 11:58 PM, Jerry Krinock je...@ieee.org wrote: So you need to experiment with different methods. • Remove the -setPredicate: statement. Now is filteredPersons everything in the store, as expected, or still empty? Yes, it contains all the names currently in the store.

Re: filtering an array of entities using NSPredicate

2012-10-14 Thread Koen van der Drift
Maybe another clue, if I NSLog the predicate, I get this: name IN {{name = Jones A.}, {name = Williams S.}, {name = Brown M.}, {name = Tobias S.}} That seems as expected to me. - Koen. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

Re: filtering an array of entities using NSPredicate

2012-10-14 Thread Jerry Krinock
On 2012 Oct 14, at 07:05, Koen van der Drift koenvanderdr...@gmail.com wrote: name IN {{name = Jones A.}, {name = Williams S.}, {name = Brown M.}, {name = Tobias S.}} That seems as expected to me. It says that the name should be in a set of predicates, which are boolean. That doesn't

Re: filtering an array of entities using NSPredicate

2012-10-14 Thread Koen van der Drift
On Oct 14, 2012, at 10:43 AM, Jerry Krinock je...@ieee.org wrote: On 2012 Oct 14, at 07:05, Koen van der Drift koenvanderdr...@gmail.com wrote: name IN {{name = Jones A.}, {name = Williams S.}, {name = Brown M.}, {name = Tobias S.}} That seems as expected to me. It says that the

Re: NSTextField not updated during large process

2012-10-14 Thread Mike Abdullah
On 12 Oct 2012, at 23:55, Koen van der Drift koenvanderdr...@gmail.com wrote: Man, I thought I had this all working, and after a few days of doing other stuff, it is back to my original issue. I am now updating my textfield as follows, so no matter from where it is called, it will always

Plus sign key equivalent.

2012-10-14 Thread Jeff Smith
Hi, I'm trying to set the key equivalent for a menu item to the plus sign. Interface Builder won't let you do that. I tried doing it manually with [item setKeyEquivalent:@+]; But to make it work you have to hold down the shift key. Any ideas? thanks Jeff

Re: NSTextField not updated during large process

2012-10-14 Thread Koen van der Drift
On Oct 14, 2012, at 3:04 PM, Mike Abdullah cocoa...@mikeabdullah.net wrote: How did you determine that -updateStatusWrapper: doesn't get called? (You could do away with that method entirely BTW, and just use setProgressStatus: as the selector) You're updating a property of self. How

Re: Plus sign key equivalent.

2012-10-14 Thread Jens Alfke
On Oct 14, 2012, at 12:24 PM, Jeff Smith jeff...@aol.com wrote: I'm trying to set the key equivalent for a menu item to the plus sign. Interface Builder won't let you do that. I tried doing it manually with [item setKeyEquivalent:@+]; But to make it work you have to hold down the shift key.

Re: NSTextField not updated during large process

2012-10-14 Thread Kyle Sluder
On Sun, Oct 14, 2012, at 12:29 PM, Koen van der Drift wrote: Even if I use: - (void)updateStatus: (NSString *)status { [statusTextField performSelectorOnMainThread:@selector( setStringValue:) withObject: status waitUntilDone: NO]; // or YES } the field does not get updated.

Re: NSTextField not updated during large process

2012-10-14 Thread Koen van der Drift
On Oct 14, 2012, at 4:34 PM, Kyle Sluder k...@ksluder.com wrote: Okay, at this point you need to step back a bit and actually work through your threading architecture. The first question to ask yourself is whether you actually understand multithreading. The second question to ask is whether

Re: NSTextField not updated during large process

2012-10-14 Thread Mike Abdullah
On 14 Oct 2012, at 20:29, Koen van der Drift koenvanderdr...@gmail.com wrote: On Oct 14, 2012, at 3:04 PM, Mike Abdullah cocoa...@mikeabdullah.net wrote: How did you determine that -updateStatusWrapper: doesn't get called? (You could do away with that method entirely BTW, and just use

Re: NSTextField not updated during large process

2012-10-14 Thread Koen van der Drift
On Oct 14, 2012, at 4:47 PM, Mike Abdullah cocoa...@mikeabdullah.net wrote: Presumably statisTextField is an outlet? Sure you've got it hooked up right? Yup, it is an outlet and hooked up. SInce it is being updated during the download phase of the process, I can assume it is connected

Re: NSTextField not updated during large process

2012-10-14 Thread Koen van der Drift
Interestingly, I also have a progressbar, and that one gets updated as expected in all cases. Very strange. - Koen. On Oct 14, 2012, at 4:54 PM, Koen van der Drift koenvanderdr...@gmail.com wrote: On Oct 14, 2012, at 4:47 PM, Mike Abdullah cocoa...@mikeabdullah.net wrote: Presumably

Re: filtering an array of entities using NSPredicate

2012-10-14 Thread Willeke
Maybe another clue, if I NSLog the predicate, I get this: name IN {{name = Jones A.}, {name = Williams S.}, {name = Brown M.}, {name = Tobias S.}} That seems as expected to me. the predicate should be something like name IN {Jones A., Williams S., Brown M., Tobias S.} what is persons

Re: Self contained command line tool

2012-10-14 Thread Alexander Holodny
LSUIElement=1 in Info.plist is hint for Launch Services to do not initialize user interface(i.e., Dock icon). On Oct 12, 2012, at 11:19 AM, Dave Keck davek...@gmail.com wrote: I would create a new Cocoa application using Xcode's template, delete all the .m files (except main.m), and put your

Re: static void declaration in apple example code

2012-10-14 Thread William Sumner
On Sep 22, 2012, at 5:46 PM, Boris Dobroslav bor...@gmx.com wrote: I'm perplexed by one line that appears in the file AVSPDocument.h from the apple example code project AVSimplePlayer: staticvoid *AVSPPlayerItemStatusContext = AVSPPlayerItemStatusContext; This is my preferred method of