codecamper
codecamper
time for a rename it seems.
Why not just TMReachability? We'll know it's still Reachability under the hood. :) On Mon, Apr 20, 2015 at 11:09 AM, Tony Million [email protected] wrote: > I agree - I...
@msal4 you must have solved this already, but you could also create a Product wrapper which forwards get / set calls to the generated classes. But honestly that & the...
I was thinking about using encapsulation. so: ``` class Post { GetPosts$Query$PostWithPagination$Post _genPost; String get post =>_getPost.post; } ``` Like that... but that gets pretty boring writing those & so...
Do I need to add a constraint like this for every imageview where I want to keep original aspect ratio? Seems overly complicated for the default case. At least a...
After a little research: UIImageView *iv = [UIImageView newAutoLayoutView]; iv.image = [UIImage imageNamed:@"new-background"]; iv.contentMode = UIViewContentModeScaleAspectFit; Works & I don't need the Autolayout aspect ratio constraint.
actually the contentMode doesn't seem to work consistently across ios size classes (1x,2x,3x)
@pronebird I don't understand why you are using a label as well. Because you want a label? Or because it helps with layout? I gave up on trying to make...
@pronebird I see. My situation was similar. Trying to align non-UIImageView controls with a UIImageView. After much struggle, I gave up. Perhaps the reason you were able to consistently make...
@strohmann Did you ever get this working? Sounds like an ugly bug.