ARC is giving me a hard time with following cast:
NSDictionary *attributes; SecItemCopyMatching((__bridge CFDictionaryRef)keychainItemQuery, (CFTypeRef *)&at
Need to change attributes to &attributes
attributes
&attributes
CFDataRef attributes; SecItemCopyMatching((__bridge CFDictionaryRef) keychainItemQuery, ( CFTypeRef*) &attributes); NSData* passDat=(__bridge_transfer NSData*) attributes;