iOS Question removing and updating a key from a map when value is null

mkh_fx

Member
Licensed User
Longtime User
I have a very strange problem removing or updating the key from map when value is null
Although there is a key, it has not been deleted
It should be noted that this code works exactly on b4a

B4X:
Dim mpTest As Map
mpTest.Initialize
mpTest.Put("gender",Null)       
mpTest.Remove("gender")
 
Top