CGContextShowTextAtPoint deprecated - what shall I use now?

ios, ios7, iphone, xcode5

Solution

You can use `[yourString drawAtPoint:aPoint withAttributes:dictOfAttributes];`

Docs for that here.

Or you could just add a `UILabel` to your view hierarchy.

Problem

The following will be considered as deprecated in iOS 7: CGContextSelectFont, CGContextShowTextAtPoint. What should I use instead?

Original source