OK, so here I am again facing the dreaded message sent to deallocated instance...
- I'm using DMTabBar (basically an Xcode-like TabBar control)
- ARC is enabled
Now, here's the deal :
- The example accompanying the control works fine
- I've enabled Zombies (and even trying debugging using Instruments, though - to be honest - I don't know what to be looking for)
- The
deallocatedinstance is thetabBarItemsarray of the TabBar (the one hosting the different buttons).
This is how I add the items :
NSMutableArray* sidebarItems = [@[
[DMTabBarItem tabBarItemWithIcon:[NSImage templateImageNamed:@"One" withSize:iconSize] tag:0 tooltip:@"Files"],
[DMTabBarItem tabBarItemWithIcon:[NSImage templateImageNamed:@"Two" withSize:iconSize] tag:1 tooltip:@"Explorer"],
[DMTabBarItem tabBarItemWithIcon:[NSImage templateImageNamed:@"Three" withSize:iconSize] tag:2 tooltip:@"Bookmarks"],
[DMTabBarItem tabBarItemWithIcon:[NSImage templateImageNamed:@"Four" withSize:iconSize] tag:3 tooltip:@"Search"]
] mutableCopy];
[sidebarTabs setTabBarItems:items];
// Handle selection events
[sidebarTabs handleTabBarItemSelection:^(DMTabBarItemSelectionType selectionType, DMTabBarItem *targetTabBarItem, NSUInteger targetTabBarItemIndex) {
if (selectionType == DMTabBarItemSelectionType_WillSelect) {
[sidebarTabView selectTabViewItem:[sidebarTabView.tabViewItems objectAtIndex:targetTabBarItemIndex]];
} else if (selectionType == DMTabBarItemSelectionType_DidSelect) {
}
}];
This is how the different elements are declared :
@interface myAppl : NSWindowController
{
IBOutlet DMTabBar* sidebarTabs;
IBOutlet NSTabView* sidebarTabView;
}
And this is DMTabBar's interface (the most "important" part) :
@interface DMTabBar : NSView {
}
// set an NSArray of DMTabBarItem elements to populate the DMTabBar
@property (nonatomic,strong) NSArray* tabBarItems;
// change selected item by passing a DMTabBarItem object (ignored if selectedTabBarItem is not contained inside tabBarItems)
@property (nonatomic,assign) DMTabBarItem* selectedTabBarItem;
Could you please explain to me what it is that I'm doing wrong? I'm definitely not a guru with Memory Management (yep, I admit I have some studying to do) but I'm definitely gonna kill myself over this one...
I'm setting the tabBarItems and they seem to be there (at least at first). Why are they being released? (remember both the control and project code use ARC).
Any ideas? (Please let me know in case you need to know anything else...)
