i know, this is strange but,
-[NSNull _isNaturallyRTL]: unrecognized selector sent to instance 0x20dfcd8
i found the problem, while using fb graphAPI.
It was in this line of code:
[tempValues setObject:textFieldBeingEdited forKey:tagAsNum];
I want to change it to
[tempValues setObject:textFieldBeingEdited.text forKey:tagAsNum];
but i dont find this anywhere in my code.
Do anybody hv idea, in which class it can be.
I would say that
textFieldBeingEditedis eithernilorNSNull. I’m not certain whattempValuesis, so I don’t know if itssetObject:forKey:automatically convertsniltoNSNull.