Hello,
Just before i had asked you about how to take input from file into hashtable by specifying key , i'm really sorry , actually i need to seperatly identify the key and value from text file and put it into my hashtable. i.e
This is text file:
LENOVA = Class_Name
DELL = Class_Name
WIPRO = Class_Name
SAMSUNG = Class_Name
Ineed to take it as key/Value pairs into hashtable, and finally load the class from hashtable.
In HashTable it has to store in this way:
Key Value
LENOVA Class_Name
DELL Class_Name
WIPRO Class_Name
SAMSUNG Class_Name
How to do this in Objective-C?? Give me some idea to proceed.