vote up 0 vote down star

I have;

CGContextRef context = UIGraphicsGetCurrentContext();

Now I want to know the width/height of the the context (in pixels); any way to do this?

flag

0% accept rate

1 Answer

vote up 2 vote down

You can't get that information from the CGContextRef object, but from the surrounding frame object:

self.frame.size.width
self.frame.size.height
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.