Re: Syncing w/o iCloud

2012-12-20 Thread Jens Alfke
On Dec 20, 2012, at 6:47 PM, Brad Stone wrote: > I have an app in OS X that shares files with an app in iOS. Because of > security restrictions some information cannot be shared with iCloud. I'd > like to do it over a wire. What are my alternatives? In my day job at Couchbase, I’m developi

Re: Syncing w/o iCloud

2012-12-20 Thread Cody Garvin
Can always do bonjour. Or create your own serverside service. On Dec 20, 2012, at 6:47 PM, Brad Stone wrote: > I have an app in OS X that shares files with an app in iOS. Because of > security restrictions some information cannot be shared with iCloud. I'd > like to do it over a wire. Wh

Syncing w/o iCloud

2012-12-20 Thread Brad Stone
I have an app in OS X that shares files with an app in iOS. Because of security restrictions some information cannot be shared with iCloud. I'd like to do it over a wire. What are my alternatives? If someone could point me in the right direction I'd appreciate it. Thanks ___

Orientation differences between iPhone 5 & 4

2012-12-20 Thread Rick Mann
I've got a simple container view controller that holds another view controller (the Cocos 2D director), and it is the root view controller of the window. All it does is ensure that the embedded view controller's view is not resized, but just centered within its view. It does this by creating a s

Re: sandbox method to open my user manual pdf

2012-12-20 Thread Sean McBride
On Wed, 19 Dec 2012 23:58:11 +, Keith Knauber said: >I'm running 10.7.5 on my machine > >I think I found a workaround… >First copy the .pdf to my sandbox, then openURL. So I rebooted and can confirm that on 10.7 I have the same problem, but not on 10.8. Your workaround is maybe good, but I

Re: touch position for UITableView

2012-12-20 Thread David Duncan
Luke mentioned this earlier – you need to implement the delegate method and ensure your recognizer doesn't conflict with others (in particular the table view's own pan gesture recognizer in this case). On Dec 20, 2012, at 12:07 PM, Eric E. Dolecki wrote: > Okay - so I set up a UIPanGestureReco

Re: "New" busy cursor in the Finder

2012-12-20 Thread Eric Schlegel
On Dec 20, 2012, at 11:50 AM, Kyle Sluder wrote: > But I'm actually curious if the menu manager works in the way the cursor > implies. If the Finder is taking a long time to build the menu, doesn't > that mean the process is blocked? I don't see any way for NSMenu to call > back to its delegate

Re: touch position for UITableView

2012-12-20 Thread Eric E. Dolecki
Okay - so I set up a UIPanGestureRecognizer and it's working great. It keeps firing if I drag into and around my UITableView. But I want that UITableView to work (scrolling up/down) while still getting x,y from the gesture recognizer. If I am scrolling the table, the gesture recognizer doesn't fire

NSCollectionView not updating

2012-12-20 Thread Gordon Apple
We have a collection view, with its own nib and viewController, in a popover. Individual cells are modified clones of the prototype. The collection displays a list of controllers that depend on the main screen content. Opening the popover correctly shows all the relevant elements and controls wo

[no subject]

2012-12-20 Thread Robbie Haertel
http://montanasol.com/google.html ___ 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 S

Re: "New" busy cursor in the Finder

2012-12-20 Thread Sean McBride
On Thu, 20 Dec 2012 11:30:50 -0800, Eric Schlegel said: >You're actually seeing the cursor in Finder (and other apps) when >opening a menu that requires a significant amount of time to open or >render (which the "Open…" menu item often does). Menus in OS X apps >(both Carbon and Cocoa) are still i

Re: "New" busy cursor in the Finder

2012-12-20 Thread Kyle Sluder
On Thu, Dec 20, 2012, at 11:30 AM, Eric Schlegel wrote: > You're actually seeing the cursor in Finder (and other apps) when opening > a menu that requires a significant amount of time to open or render > (which the "Open…" menu item often does). Menus in OS X apps (both Carbon > and Cocoa) are stil

Re: touch position for UITableView

2012-12-20 Thread David Duncan
On Dec 20, 2012, at 11:28 AM, "Eric E. Dolecki" wrote: > over time though or only when it's triggered? Depends on which gesture recognizer you use. You probably want a pan recognizer for this. -- David Duncan ___ Cocoa-dev mailing list (Cocoa-dev@l

Re: touch position for UITableView

2012-12-20 Thread Luke Hiesterman
You can call the method at any time, but you'd probably just call it from your gesture handler which will fire for UIGestureRecognizerStateChanged as the touch moves. I'd suggest reading up on UIGestureRecognizer. It's a valuable class. Event Handling Guide for iOS: Gesture Recognizers Luke On

Re: "New" busy cursor in the Finder

2012-12-20 Thread Eric Schlegel
On Dec 19, 2012, at 8:03 PM, lordpi...@mac.com wrote: > I noticed recently that the Finder has a "new" very nice looking animated > busy cursor, which you can see here: > https://dl.dropbox.com/u/45534011/BusyCursor.png > > It should seem very familiar to Windows users who have had the "pointe

Re: touch position for UITableView

2012-12-20 Thread Eric E. Dolecki
over time though or only when it's triggered? Google Voice: (508) 656-0622 Twitter: eric_dolecki XBoxLive: edolecki PSN: eric_dolecki Imagineric On Thu, Dec 20, 2012 at 2:02 PM, Luke Hiesterman wrote: > -[UIGestureRecognizer locationInView:] will

Re: touch position for UITableView

2012-12-20 Thread Luke Hiesterman
-[UIGestureRecognizer locationInView:] will give you the touch location. Luke On Dec 20, 2012, at 11:00 AM, "Eric E. Dolecki" wrote: > I need to continually get the touch point though... In essence I'd like to > place a UIImageView (of a touch ring) above everything, drive it (move it > arou

Re: touch position for UITableView

2012-12-20 Thread Eric E. Dolecki
I need to continually get the touch point though... In essence I'd like to place a UIImageView (of a touch ring) above everything, drive it (move it around) with touch while maintaining normal operation of the UITableView. Google Voice: (508) 656-0622 Twitter: eric_dolecki XBoxLive: edo

Re: touch position for UITableView

2012-12-20 Thread Luke Hiesterman
You're best off using a UIGestureRecognizer to track the touches. You can probably wire up a stock UILongPressGestureRecognizer to do what you need. Otherwise you can always write a custom recognizer that just tracks touches. Just make sure it does not prevent recognition of other gestures. Luk

touch position for UITableView

2012-12-20 Thread Eric E. Dolecki
Greetings all, I have the need for getting the touch position for a UITableView. I subclassed UITableView and override the touches methods. Like so: - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { [self.nextResponder touchesBegan:touches withEvent:event]; [super touch

Re: Modern-day color spaces

2012-12-20 Thread Quincey Morris
(resent because it didn't arrive on the list the first time) On Dec 18, 2012, at 22:59 , Kyle Sluder wrote: > My current understanding is this: I don't know, but (especially since no one else seems to have jumped in) this has been percolating at the back of my mind. I'm very likely wrong, but

Re: "New" busy cursor in the Finder

2012-12-20 Thread Andrew Thompson
I have TextWrangler installed but not BBedit. In any case this was definitely showing up in the Finder, though given it was the Open With menu item u guess it could be Launch Services showing it. On Dec 19, 2012, at 11:55 PM, John Pannell wrote: > I noticed the appearance of this cursor recen