My program has a memory leak

前端 未结 5 1933
孤独总比滥情好
孤独总比滥情好 2021-01-16 22:17
-(IBAction)play2;

{
    CFBundleRef mainBundle = CFBundleGetMainBundle();
    CFURLRef soundFileURLRef;
    soundFileURLRef =CFBundleCopyResourceURL(mainBundle, 
           


        
相关标签:
5条回答
  • 2021-01-16 22:54

    CFBundleCopyResourceURL creates a CFURLRef object that you own, so you need to relinquish ownership of this object at some point with CFRelease. Similarly you will need to balance your call to AudioServicesCreateSystemSoundID with another call to AudioServicesDisposeSystemSoundID.

    For Core Foundation, functions that have the word Create or Copy in their name return an object that you own, so you must relinquish ownership of it when you are done with it. For more information about Core Foundation memory management, see the Core Foundation Memory Management Programming Guide.

    Just to give you a hint, I would probably handle the memory management like this (although I haven't coded Objective-C for a while). This also assumes you want to keep the URL reference for whatever reason:

    @interface MyClass
    {
        CFURLRef soundFileURLRef;
        UInt32 soundID;
    }
    
    @end
    
    @implementation MyClass
    
    - (id) init
    {
        self = [super init];
        if (!self) return nil;
    
        CFBundleRef mainBundle = CFBundleGetMainBundle();
    
        soundFileURLRef = CFBundleCopyResourceURL(mainBundle, CFSTR("Bear3"), CFSTR("wav"));
    
        AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID);
    
        return self;
    }
    
    - (void) dealloc
    {
        AudioServicesDisposeSystemSoundID(soundID);
        CFRelease(soundFileURLRef);
        [super dealloc];
    }
    
    - (IBAction) play2
    {
        AudioServicesPlaySystemSound(soundID);
    }
    
    0 讨论(0)
  • 2021-01-16 23:00

    CFBundleCopyResourceURL contains copy so your retain count on soundFileURLRef is in fact 1. When you are done with it call CFRelease(soundFileURLRef) to decrement your retain count.

    In addition to the error you're getting, SAKrisT's answer about calling AudioServicesDisposeSystemSoundID on the object you created with AudioServicesCreateSystemSoundID is also something to address.

    0 讨论(0)
  • 2021-01-16 23:11

    AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID); - leak here, because create added to retain count

    use AudioServicesDisposeSystemSoundID after playing sound

    0 讨论(0)
  • 2021-01-16 23:12

    Whenever you use the keyword 'alloc' , it means you are allocating some memory space for your object. Now if you don't release it yourself or autorelease it, then it shows 'memory leak'. It is not only about uialertview, but for every other objects also.
    You may want to release the alertview object in dealloc() method, but still it will show memory leak as the memory is unused for a long time.
    So , first you show the alert by [alert show], then you need the object anymore, so release it by [alert release];
    Enjoy !! :)

    0 讨论(0)
  • 2021-01-16 23:16

    If you're not using ARC (available in xcode 4.2) then you need to release anything you alloc. add [alert release] after [alert show].

    0 讨论(0)
提交回复
热议问题