我是 iOS 开发的新手,想知道是否有人可以帮助我理解为什么会这样?@synthesize 有什么作用?
在.h
@property (strong, nonatomic) AVAudioPlayer *player;
在.m
@synthesize player;
-(void)startMusic{
NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"audio" ofType:@"m4a"];
NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];
player = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil];
player.numberOfLoops = -1; //infinite
[player play];
}