Strange thing
I have the code below which limit phone number to 10 digits
on IOS 7 it is working fine, it is limiting the number to 10 numbers
on IOS 8, I managed to enter 11 digits (maybe even 12, I don't have the DB in front of me)
I have the code below which limit phone number to 10 digits
on IOS 7 it is working fine, it is limiting the number to 10 numbers
on IOS 8, I managed to enter 11 digits (maybe even 12, I don't have the DB in front of me)
B4X:
Sub EditText6_TextChanged (Old As String, New As String)
If New.Length > 10 Then
EditText6.Text = New.SubString2(0, 10)
End If
End Sub