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 »
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 »
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 »