Re: addTarget: forControlEvents: ?

2015-04-08 Thread Uli Kusterer
On 07 Apr 2015, at 21:49, Dave wrote: > Given the iOS/Cocoa-Touch code: > > [self addTarget:self action:@selector(buttonTouchUpInsideAction:) > forControlEvents:UIControlEventTouchUpInside]; > [self addTarget:self action:@selector(buttonTouchDownAction:) > forControlEvents:UIControlEventTouchDo

Finder not responding to [NSRunningApplication activateWithOptions]

2015-04-08 Thread Tomáš Znamenáček
Hello! I’m trying to bring the Finder window to front: NSRunningApplication *finder = [NSRunningApplication runningApplicationWithProcessIdentifier:finderPID]; [finder activateWithOptions:NSApplicationActivateIgnoringOtherApps]; This works on the primary, built-in display. But on my external dis

Re: Finder not responding to [NSRunningApplication activateWithOptions]

2015-04-08 Thread dangerwillrobinsondanger
> On 2015/04/08, at 22:53, Tomáš Znamenáček wrote: > > I’m trying to bring the Finder window to front: > > NSRunningApplication *finder = [NSRunningApplication > runningApplicationWithProcessIdentifier:finderPID]; > [finder activateWithOptions:NSApplicationActivateIgnoringOtherApps]; > > This

Re: Finder not responding to [NSRunningApplication activateWithOptions]

2015-04-08 Thread Tomáš Znamenáček
I should have mentioned that Finder behaves unlike other apps in this regard. If I do the same with any other app, the app is correctly focused, stealing focus from whatever app was focused before. (And the menu bar on the display “gets focus”, too. Gets opaque, anyway.) T. ___

Re: Finder not responding to [NSRunningApplication activateWithOptions]

2015-04-08 Thread Ken Thomases
On Apr 8, 2015, at 9:19 AM, Tomáš Znamenáček wrote: > I should have mentioned that Finder behaves unlike other apps in this > regard. If I do the same with any other app, the app is correctly focused, > stealing focus from whatever app was focused before. (And the menu bar on > the display “gets

Finder Sync extension menu limitations

2015-04-08 Thread Dragan Milić
Hello, I wonder if anyone have got more experience developing Finder Sync extensions for Yosemite. I believe I figured out some things I’d like to achieve aren’t possible and I’d like to confirm them. It’s related to FIFinderSync protocol method - [FIFinderSync menuForMenuKind:]. According to d

UITextView doesn't change the text in iOS 8.2(12D508)

2015-04-08 Thread wesley.dias wesley.dias
Hi, I'm having trouble to change the text in a UITextView element on a iPhone 5 OS 8.2(12D508). The same layout works in other versions( version < 8 ). I've tried to exclude and add the element again but it still doesn't work. Suggestions? Thank you all, -- Atenciosamente, Wesley C. Dias de

Implement multi-tabs with WebView

2015-04-08 Thread Juanjo Conti
Hi! I'd like to use a WebView instance to handle a multi-tabs browser-like desktop app. Is it possible using only one WebView instance? Or should I need to use once per tab? Thanks -- Juanjo Conti http://goog_2023646312>@carouselapps.com > Software Engineer - Carousel Apps

Re: Finder not responding to [NSRunningApplication activateWithOptions]

2015-04-08 Thread John Joyce
> On Apr 8, 2015, at 11:38 PM, Ken Thomases > wrote: > > On Apr 8, 2015, at 9:19 AM, Tomáš Znamenáček > wrote: > >> I should have mentioned that Finder behaves unlike other apps in this >> regard. If I do the same with any other a

Re: Implement multi-tabs with WebView

2015-04-08 Thread Jens Alfke
> On Apr 8, 2015, at 1:24 PM, Juanjo Conti wrote: > > Hi! I'd like to use a WebView instance to handle a multi-tabs browser-like > desktop app. Is it possible using only one WebView instance? Or should I > need to use once per tab? You’ll need one per tab. You’ll also want to join the webkit-sd