views:

206

answers:

2

Hi,

The color of a magnifying glass is being taken automatically from the background color of UITextView. Under the text view I have an image and the text view background itself is opaque. So in this case the magnifying glass is white even though the picture under UITextView is yellow.

Is it possible to override the color of magnifying glass?

Thank you in advance.

+1  A: 

I do not believe this is possible on a non jailbroken iPhone.

Roger Nolan
A: 

Subclass UITextView/UITextField, override -drawRect and do your own drawing, then you can use .backgroundColor to set the magnifying glass tint.

Does this actually work?
Meltemi