iOS Team Technical Fanboy

Useful tips in iOS development, offloading your designers, managing an app farm and iOS build process automation.

01 Nov 2014 on objective c, UI, iOS, UIView, pixel perfect, transform, CGAffineTransform

Scaling a UIView with subviews staying the same size

Easiest way to scale a UIButton or a UITableViewCell is to set a transform on it: view.transform = CGAffineTransformMakeScale(1.5f, 1.5f); If this works for you that's perfect, but sometimes some subviews start looking bad when zoomed in, especially images and text. To make the UIView zoomed in,…

05 Sep 2014 on objective c, offloading designers, UI, HIG, UIButton, iOS

Human Interface Guidelines compliant UIButton subclass

iOS Human Interface Guidelines tell us: Make it easy for people to interact with content and controls by giving each interactive element ample spacing. Give tappable controls a hit target of about 44 x 44 points. Sometimes icons for the buttons, provided by designers, are smaller than the above mentioned…

Page 1 of 1