ios - Convert NSMutableArray to a NSSet with the same order -
how can programatically?
i told way nsset has different order.
nsset *set = [nsset setwitharray:thearray]; any idea?
thanks in advance.
if want order, you'll have use nsorderedset.
nsorderedset *set = [nsorderedset orderedsetwitharray:thearray];
Comments
Post a Comment