Is there a custom X or close button icon builtin to iOS7 that can be used for a close button?
Is there a custom X or close button icon builtin to iOS7 that can be used for a close button?
This a tricky subject. Ideally you might want to get an icon generated from The Noun Project to get a more pixel perfect version.
What I have used myself is a "Add Contact" button type and then used this code to initialise it at load time to rotate it 45 degrees:
yourUILabel.transform = CGAffineTransform(rotationAngle: CGFloat.pi / 4)
It's not an ideal solution in my option though.
Hope this helps!
iOS 13 +
We can use multiple inbuilt types, including close:
UIButton(type: .close)
For more information on button types please view: https://developer.apple.com/documentation/uikit/uibutton/buttontype