You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned in the bug title, there is a retain cycle between those two classes. Therefore, if an instance of MIKMIDISequencer is set to nil, such instance will never call dealloc, as its 'sequence' property has a strong reference to it.
As mentioned in the bug title, there is a retain cycle between those two classes. Therefore, if an instance of MIKMIDISequencer is set to nil, such instance will never call dealloc, as its 'sequence' property has a strong reference to it.
MIKMIDISequence.h:
@property (nonatomic, readonly, nullable) MIKMIDISequencer *sequencer;
MIKMIDISequence.m:
@interface MIKMIDISequence () { MIKMIDISequencer *_sequencer; }
MIKMIDISequencer.h
@property (nonatomic, strong) MIKMIDISequence *sequence;
The text was updated successfully, but these errors were encountered: