Re: NSSharingService and YouTube

2014-02-12 Thread SevenBits
On Feb 12, 2014, at 6:44 PM, Graham Cox wrote: > > On 13 Feb 2014, at 10:00 am, Kyle Sluder wrote: > >> NSSharingService is not extensible. > > It's not? What's this for then? > > - initWithTitle:image:alternateImage:handler: > > Creates a custom sharing service object. > > Admittedly it d

Re: NSSharingService and YouTube

2014-02-12 Thread Kyle Sluder
On Wed, Feb 12, 2014, at 03:44 PM, Graham Cox wrote: > > On 13 Feb 2014, at 10:00 am, Kyle Sluder wrote: > > > NSSharingService is not extensible. > > It's not? What's this for then? > > - initWithTitle:image:alternateImage:handler: > > Creates a custom sharing service object. > > Admittedly

Cocoaheads Lake Forest (92630) meets tonight, under new management

2014-02-12 Thread Scott Ellsworth
Hello, all, Peter Hosey will be leading Cocoaheads Lake Forest tonight at the usual spot. http://www.meetup.com/CocoaHeadsOC/events/161337602/ This month, we'll look at Reveal, an app that iOS developers can use to explore and manipulate the view and layer hierarchies of Cocoa Touch apps. http:

Re: NSSharingService and YouTube

2014-02-12 Thread Graham Cox
On 13 Feb 2014, at 10:00 am, Kyle Sluder wrote: > NSSharingService is not extensible. It's not? What's this for then? - initWithTitle:image:alternateImage:handler: Creates a custom sharing service object. Admittedly it doesn't get you much - you have to write the handler that actually inter

Re: NSSharingService and YouTube

2014-02-12 Thread SevenBits
On Feb 12, 2014, at 6:30 PM, Nick Petrov wrote: >>> Check out the google api if you haven't >>> https://developers.google.com/youtube/v3/ >> >> I already suggested that. ;) > > My guess is, you only replied to the OP. You need to hit reply-to-all so the > list can receive it too. Ah, that’s

Re: NSSharingService and YouTube

2014-02-12 Thread Nick Petrov
Check out the google api if you haven't https://developers.google.com/youtube/v3/ -Nick http://code-and-coffee.blogspot.com On Feb 13, 2014, at 12:40 AM, Gordon Apple wrote: > I need to upload a video file to YouTube from my Mac App. So, naturally, I > looked at NSSharingService. It supports 1

Re: NSSharingService and YouTube

2014-02-12 Thread Kyle Sluder
On Wed, Feb 12, 2014, at 02:40 PM, Gordon Apple wrote: > I need to upload a video file to YouTube from my Mac App. So, naturally, > I > looked at NSSharingService. It supports 19 different kinds of uploads -- > none to YouTube. Whasup? Apple, Inc. just have a vendetta against Google > and YouTube

NSSharingService and YouTube

2014-02-12 Thread Gordon Apple
I need to upload a video file to YouTube from my Mac App. So, naturally, I looked at NSSharingService. It supports 19 different kinds of uploads -- none to YouTube. Whasup? Apple, Inc. just have a vendetta against Google and YouTube? I have YouTube upload in my iOS app, so I suppose I could port

Re: Changes in -performSelectorOnMainThread: from iOS 6 to 7?

2014-02-12 Thread Rick Mann
On Feb 12, 2014, at 07:58 , Fritz Anderson wrote: > On 11 Feb 2014, at 6:04 PM, Rick Mann wrote: > >> I'm updating an old project that was built long ago, skipping udpates for >> iOS 5 & 6. One of the things my app does, in an NSOperation, is call >> -performSelectorOnMainThread: (waiting un

Re: Changes in -performSelectorOnMainThread: from iOS 6 to 7?

2014-02-12 Thread Fritz Anderson
On 11 Feb 2014, at 6:04 PM, Rick Mann wrote: > I'm updating an old project that was built long ago, skipping udpates for iOS > 5 & 6. One of the things my app does, in an NSOperation, is call > -performSelectorOnMainThread: (waiting until done) as it integrates > downloaded data into the Core

Re: VCs in the Responder Chain - Again, but with a good solution?

2014-02-12 Thread jonat...@mugginsoft.com
On 12 Feb 2014, at 00:49, Seth Willits wrote: > > This is one of those topics I thought about 6 years ago, came across a decent > easy-to-use solution that has worked fine so I've never really had to think > about it again. Until today. > > All the way back to when NSViewController was added