iOS Question [SOLVED] Cursor TextField visible

Star-Dust

Expert
Licensed User
Longtime User
Is it possible to make the cursor invisible when you overwrite when writing on testfield?
 

ilan

Expert
Licensed User
Longtime User
Not sure that I understand. Do you want to allow the user to enter text? If not you can set Enabled to False.

i think he wants to hide the cursor line when writing in a textfield. maybe changing the color of the cursor to transparent could do the job.
 
Upvote 0

Star-Dust

Expert
Licensed User
Longtime User
In Android I would do so

B4X:
Dim jo = EditText1 As JavaObject
jo.RunMethod("setCursorVisible", Array As Object(Visible))
 
Upvote 0

Star-Dust

Expert
Licensed User
Longtime User
i think he wants to hide the cursor line when writing in a textfield. maybe changing the color of the cursor to transparent could do the job.
exactly
 
Upvote 0

Star-Dust

Expert
Licensed User
Longtime User
Do I have to do in swift?
Because I do not understand anything
 
Upvote 0

Similar Threads

Top