I want to create a simple project to study ios5.0 programing on xcode4.2. this is the original code:
NSString *path = [[NSBundle mainBundle] pathForResource:@"win" ofType:@"wav"];
NSURL* url = [NSURL fileURLWithPath:path];
AudioServicesCreateSystemSoundID( ( CFURLRef)url, &winSoundID);
compile error:
file://localhost/Users/Hikari/Documents/Projects/Pickers/Pickers/CustomPickerViewController.m: error: Automatic Reference Counting Issue: Cast to 'CFURLRef' (aka 'const struct __CFURL *') of an Objective-C pointer to a non-Objective-C pointer is disallowed with Automatic Reference Counting
So I have searched for it on google, some friends say that I must add macro '__bridge' to solve it but that doesn't work.
code:
AudioServicesCreateSystemSoundID( ( __bridge CFURLRef)url, &winSoundID);
error:
file://localhost/Users/Hikari/Documents/Projects/Pickers/Pickers/CustomPickerViewController.m: error: Semantic Issue: Use of undeclared identifier '__bridge'
Automatic Reference Counting is Enable! how to solve this problem???