It's Julian Again. In my project I have around 50 different urls and i need to group them into two groups. So that 25 of them are displayed in VC one and the rest in VC2. I wanted to add a tag, and then based on this tag distinguish the two groups but I don't know how to do that. So that it looks like that:
NSURL tag:@"a"
and then
if(tag == "a")
{// Do the code}
How could I do that Thanks in advance!