iOS Question [<b4i_main 0x14576b70> setValue:forUndefinedKey:]: this class is not key value coding-compliant for

tufanv

Expert
Licensed User
Longtime User
Hello,

I am getting an error i cant understand at b4i . checked forum , couldnt see similar error.

I have
dim joburl as string
in proceses globals and when the sub below executed i get an error :

B4X:
Sub jobliste
   
    For i=0 To listpage.Size-1
        If i=0 Then
            joburl=joburl&listpage.Get(i)
        Else
            joburl=joburl&"+"&listpage.Get(i)
        End If
   
    Next
    Log(joburl)
End Sub

Error is:

[<b4i_main 0x166b6370> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key _joburl.
 
Top