Reputation: 843
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
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