tags:

views:

21

answers:

1

i want to get unique strings from an array and to store those strings into another array..... give logic or sample code for this ...............thanks in advance

A: 
NSArray *uniqueArray = [[NSSet setWithArray: yourArray] allObjects];
Vladimir
its working thanks.......................