I am reading a text file. I want to check whether there is a variable declared in the class with name same as the text that I read from the file.
Method for this in java is 'java.lang.Class.getDeclaredField()'. See http://www.tutorialspoint.com/java/lang/class_getdeclaredfield.htm for details.
I was unable to find similar method in ObjectiveC. Is there any? If no, how I can implement the same. Please give me few tips for that if you get any idea.