Taggin Array Objects (Or however else possible)
Hi,
I have an NSMutableArray which is empty at first but eventually gets filled with objects (NSString) recieved through WiFi and through the users input. This array is shown in a tableView. Pretty staight forward so far...
The problem is that I need distinguish the objects im my array recieved through WiFi from the ones recieved through the users input in order to diplay them differently in the tableView.
Example:
===============
My recieved object
===============
My inputted object
===============
My recieved object
===============
My recieved object
===============
My inputted object
===============
and so on....
How can I do this? I thought about tagging them at first but im not sure if you can tag objects in an array.
Thanks alot for your help!
|