ajeet sharma
ajeet sharma

Reputation: 843

iOS Black Magnifying Glass in UITextfield when long press

I am running a x Code 4.6 app in x code 5, and when I am performing a long press event at any text field for editing then a black circle appears? I am not able to understand this problem.

Have anyone came across with this black spot?

Upvotes: 1

Views: 780

Answers (2)

Chirag D jinjuwadiya
Chirag D jinjuwadiya

Reputation: 643

Some Time [self.window setBackgroundColor:[UIColor clearColor]]; Not work.

so add self.window.windowLevel = 1.2;

in - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

Upvotes: 1

user1912894
user1912894

Reputation: 21

Change UIWindow background color to ClearColor.

Upvotes: 1

Related Questions