0

在此处输入图像描述

你好,

我运行了 XCode 分析器 - 它告诉我以下两者都是潜在的内存泄漏。我不确定为什么。我这样声明了 midiDevices

@property (assign, nonatomic) NSMutableArray* midiDevices;

这是 openMidiIn 的代码

-(void)openMidiIn {
    int k, endpoints;

    CFStringRef name = NULL, cname = NULL, pname = NULL;
    CFStringEncoding defaultEncoding = CFStringGetSystemEncoding();
    MIDIPortRef mport = NULL;
    MIDIEndpointRef endpoint;
    OSStatus ret;

    /* MIDI client */
    cname = CFStringCreateWithCString(NULL, "my client", defaultEncoding);
    ret = MIDIClientCreate(cname, NULL, NULL, &mclient);
    if(!ret){
        /* MIDI output port */
        pname = CFStringCreateWithCString(NULL, "outport", defaultEncoding);
        ret = MIDIInputPortCreate(mclient, pname, MidiWidgetsManagerReadProc, self, &mport);
        if(!ret){
            /* sources, we connect to all available input sources */
            endpoints = MIDIGetNumberOfSources();
            //NSLog(@"midi srcs %d\n", endpoints);
            for(k=0; k < endpoints; k++){
                endpoint = MIDIGetSource(k);
                void *srcRefCon = endpoint;
                MIDIPortConnectSource(mport, endpoint, srcRefCon);

            }
        }
    }
    if(name) CFRelease(name);
    if(pname) CFRelease(pname);
    if(cname) CFRelease(cname);

}

谢谢你的帮助。


分析器信息这里是有关进行一些更改的错误的更多信息。

在此处输入图像描述

4

1 回答 1

1

假设您使用的是 ARC,该对象实际上会立即被释放并释放。为什么说你有内存泄漏令人困惑,但你会有一个死引用。使用strong,不使用assign

于 2013-10-02T08:11:25.193 回答