White Magnifying Glass appears in UITextfield when long press - ios

when I am performing a long press event at any text field for editing then a White circle appears but doesn't show text inside? I not able to understand whats happening.

Change UIWindow background color to ClearColor.

Related

UItextfield not rendering background color

When UITextfield is visible on viewdidload method, It's background color is visible. However, If the text field is kept hidden until some event occurs, It's background color is not visible.
In the image, I have given text field white color background with an alpha value.
In first case color is visible, however in the second case, background color seems to be the clear color.
These text fields are inside UIStackView.
When textfield is in stackView call
self.field1.isHidden = false
self.field1.setNeedsDisplay()

Stop cursor in a UITextField or UITextView from blinking

Is it possible to stop the cursor in a UITextView or UITextField from blinking??
What I want is that the cursor should have a visible color (say blue or any other) but it should be non-blinking.
You can create an invisible text field and make it the first responder. Once you're done, you can set the first responder back to the original text field and remove the invisible text field
You can try to set the colour of Tint to clear, its a hack but works :/
textfield.tintColor = UIColor.Clear

Stroke Around View From Keyboard

I have a dark background in my application. When the keyboard comes on screen it creates a stroke around the view that contains the UITextField or UITextView. Is this a bug? Does anyone know of a workaround?
In the picture attached you'll see a white stroke going around the view under the top bar.

UISearchbar unable to remove text border

I set a transparent image to a UISearchBar in order to show the background of the view behind it. For some reason it caused a strange truncated blue border to appear on the text field.
Here is how it looks:
Any idea from where did it come from? Any way of removing it?

iOS Text Selection Magnifying Glass Color?

In testing, I discovered the "magnifying glass" color for text selection in a view of my app is black, instead of being the normal magnifier. I have no idea why this is, I don't believe I set it.
How can I change this back to the standard magnifying glass?
Here is a screenshot:

Resources