How do i fix the following code
return [(NSNetwork*)CFDictionaryGetValue( _networkMap, address) retain];
fixed to
return [(NSNetwork*)CFDictionaryGetValue( _networkMap, (__bridge const void *)address)];
Its says expected identifier.I am unable to figure out. Can u guys help me plz?