As I am relatively new to the world of OOP, I was wondering what mayhem I might potentially be causing by constantly alloc'ing something to a property.
I have a property:
@property (nonatomic, retain) AVAudioPlayer *audioPlayer;
This is then synthesized in my viewcontroller.m file. Now, I have a method to initialize the audioPlayer by setting a URL for it and such. The thing that's worrying me is that I call this initialize method every time a new sound is selected (to allow the user to play a sound from a picker):
self.audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:fileURL error:nil];
The code above shows the line that is called every time the picker value is changed.
Before I blabber on too much, does the above line a) create a NEW instance of the AVAudioPlayer object every time I call it, or does it b) merely "overwrite" the already existing audioPlayer instance? If a), I suspect I could kill the memory rather quickly; what would I do to make it efficient? And if b), I guess that's fine then? ...and if secret answer c) (you are totally misunderstanding how objects are created), then please shine a light on my ignorance.
Thanks!