Retina and VFL vs Programmatic Layout

2014-07-26 Thread Luther Baker
In the following example, I'm displaying a child view in a container view attached to a view controller's view property ... on a Retina iPhone simulator. EXPECTED: The VFL constraints cause the child to fill the screen whereas UNEXPECTED: the programmatic constraints cause the child to fill exact

Re: Retina and VFL vs Programmatic Layout

2014-07-26 Thread Luther Baker
Ah, I forgot to add constraints to establish the origin. Got it. Thanks, -Luther On Sat, Jul 26, 2014 at 10:44 AM, Luther Baker wrote: > In the following example, I'm displaying a child view in a container view > attached to a view controller's view property ... on a Retina iPhone > simulator

10.10 NSSlider continuous mode sends gazillions of action messages

2014-07-26 Thread Markus Spoettl
Hi, for some reason NSSlider set up to send continuous action messages sends a much higher number action messages (10 times as many) than it previously did. This affects not only apps linked against 10.10 but also ones that link against 10.9. Is this intentional? The AppKit release notes d

Opening Documents in iOS

2014-07-26 Thread Pax
I'm writing an iOS program that stores data in a text file (UTF-8) that contains custom tags which are only meaningful to my app. Loading the files, and doing useful work with them is not a problem - but I would like these files to be sharable, so that one user can send his data files to anothe

OS X play a video?

2014-07-26 Thread Eric E. Dolecki
I've been googling a while and haven't found anything solid yet. I've been doing a lot of iOS development, this is my first journey into OS X. AVSimplePlayer required using the menu to load a movie... I want to do something much simpler than that. I have a large bitmap of an iPad. I'd like to laye

UIScrollView question

2014-07-26 Thread Luther Baker
I have a pretty good frames based background but I'd like to consider an iPhone screen done with AutoLayout on a UIScrollView such that the bottom UITextView grows vertically to fill the vertical space remaining from the text view to the bottom of the device. UIScrollView parent [Label]

Re: UIScrollView question

2014-07-26 Thread Quincey Morris
On Jul 26, 2014, at 20:58 , Luther Baker wrote: > I have a pretty good frames based background but I'd like to consider an > iPhone screen done with AutoLayout on a UIScrollView such that the bottom > UITextView grows vertically to fill the vertical space remaining from the > text view to the bot

Re: UIScrollView question

2014-07-26 Thread Quincey Morris
On Jul 26, 2014, at 21:09 , Quincey Morris wrote: > Isn’t the answer to this … Sorry, I quoted the wrong thing. I meant, isn’t the answer to the stuff about the keyboard in that documentation? Is the scroll view there only to deal with the case of the keyboard appearing? In that case, won’t

Re: UIScrollView question

2014-07-26 Thread Luther Baker
Yep - I'm good with the keyboard part (ie: I can tell how much of the screen will disappear) ... > won’t a “bottom space to superview” Are you hoping that when the keyboard comes up -- it shortens the parent view you are referring to? To date, that has not been my experience. The keyboard just sh

Re: UIScrollView question

2014-07-26 Thread Quincey Morris
On Jul 26, 2014, at 22:19 , Luther Baker wrote: > Are you hoping that when the keyboard comes up -- it shortens the parent view > you are referring to? No, it’s more complicated than that, but I think it’s the *question* that’s complicated, more than the answer. First you have to decide what