Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3286998
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T20:26:37+00:00 2026-05-17T20:26:37+00:00

what could be causing this crash? From everything I’ve read, I’m using the property

  • 0

what could be causing this crash? From everything I’ve read, I’m using the property correctly. When I call the method loadDot2Dot a first time, it works fine. Then when I go back to the main menu (call loadMainMenu) and try to load the dot2DotVC again (call loadDot2DotVC again), I get a crash (Exc_Bad_Access) – with no further info.

When I comment out the [d2d release]; line in loadDot2Dot it works fine. Am I doing something wrong? I know I should be releasing there…

Cheers,

Here’s the .h

#import <UIKit/UIKit.h>

@class MenuVC;
@class Dot2DotVC;

@interface MyViewController : UIViewController {

    UIViewController *menuVC;           
    UIViewController *dot2DotVC;        

}
@property (nonatomic, retain) UIViewController *menuVC;
@property (nonatomic, retain) UIViewController *dot2DotVC;


- (IBAction)loadMainMenu:(id)sender;   
- (IBAction)loadDot2Dot:(id)sender;   


@end

Here’s the .m

#import "MyViewController.h"
#import "MenuVC.h"
#import "Dot2DotVC.h"

@implementation MyViewController

@synthesize dot2DotVC;
@synthesize menuVC;

- (IBAction)loadMainMenu:(id)sender {

    if(self.menuVC != nil){
        [self.menuVC.view removeFromSuperview];
    }   

    MenuVC *menuController = [[MenuVC alloc] initWithNibName:@"iPadMenuVC" bundle:nil];
    self.menuVC = menuController;
    [menuController release];


    [self.view insertSubview:self.menuVC.view atIndex:0];   
    if (self.dot2DotVC != nil) {
        [self.dot2DotVC.view removeFromSuperview];
    }   
}

- (IBAction)loadDot2Dot:(id)sender {

    Dot2DotVC *dvc = [[Dot2DotVC alloc] initWithNibName:@"iPadDot2DotVC" bundle:nil];
    self.dot2DotVC = dvc;

    [dvc release]; // If I comment out this release call, I don't get a crash.   

    [self.view insertSubview:dot2DotVC.view atIndex:0]; 
    if (self.menuVC != nil) {
        [self.menuVC.view removeFromSuperview];
    }
}

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
    [super viewDidLoad];

    MenuVC *menuController = [[MenuVC alloc] initWithNibName:@"iPadMenuVC" bundle:nil];     
    self.menuVC = menuController;
    [menuController release];

    [self.view insertSubview:self.menuVC.view atIndex:0];       
}

- (void)didReceiveMemoryWarning {
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];    
    // Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload {
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;    
}


- (void)dealloc {   

    self.menuVC = nil;      
    self.dot2DotVC = nil;   
    [super dealloc];    
}

-(BOOL)canBecomeFirstResponder {
    return YES;
}

-(void)viewDidAppear:(BOOL)animated {

    [self becomeFirstResponder];
}

@end

ator/Documents/Princess_Pets/main.m:14

Program received signal:  “EXC_BAD_ACCESS”. (gdb) bt
#0  0x30fb15fa in objc_msgSend ()
#1  0x314b9aca in CFRelease ()
#2  0x31525b58 in __CFTypeCollectionRelease ()
#3  0x31503522 in __CFArrayReleaseValues ()
#4  0x315038a2 in __CFArrayDeallocate ()
#5  0x314b9bc0 in _CFRelease ()
#6  0x314b9a9a in CFRelease ()
#7  0x30338038 in -[NSCFArray release] ()
#8  0x30fb29e8 in objc_setProperty ()
#9  0x0000f246 in -[Dot2DotVC setCurrentImages:] (self=0x13a310,
_cmd=0x19a8c, newArray=0x0) at /Users/adminstrator/Documents/Princess_Pets/Classes/Dot2DotVC.m:42
#10 0x0000ec36 in -[Dot2DotVC dealloc] (self=0x13a310, _cmd=0x33005660) at /Users/adminstrator/Documents/Princess_Pets/Classes/Dot2DotVC.m:1474
#11 0x314ba71a in -[NSObject release] ()
#12 0x30fb29e8 in objc_setProperty ()
#13 0x00004452 in -[Princess_PetsViewController setDot2DotVC:] (self=0x11d800,
_cmd=0x194f9, _value=0x145100) at /Users/adminstrator/Documents/Princess_Pets/Classes/Princess_PetsViewController.m:20
#14 0x00003234 in -[Princess_PetsViewController loadDot2Dot:] (self=0x11d800,
_cmd=0x1962e, sender=0x146840) at /Users/adminstrator/Documents/Princess_Pets/Classes/Princess_PetsViewController.m:107
#15 0x314db16c in -[NSObject performSelector:withObject:withObject:] ()
#16 0x322930d4 in -[UIApplication sendAction:to:from:forEvent:] ()
#17 0x32293074 in -[UIApplication sendAction:toTarget:fromSender:forEvent:] ()
#18 0x32293046 in -[UIControl sendAction:to:forEvent:] ()
#19 0x32292d98 in -[UIControl(Internal) _sendActionsForEvents:withEvent:] ()
#20 0x322933e6 in -[UIControl touchesEnded:withEvent:] ()
#21 0x32291dbc in -[UIWindow _sendTouchesForEvent:] ()
#22 0x32291704 in -[UIWindow sendEvent:] ()
#23 0x3228d326 in -[UIApplication sendEvent:] ()
#24 0x3228cc92 in _UIApplicationHandleEvent ()
#25 0x3414eb32 in PurpleEventCallback ()
#26 0x314d8d9c in CFRunLoopRunSpecific ()
#27 0x314d84e0 in CFRunLoopRunInMode ()
#28 0x3414e0da in GSEventRunModal ()
#29 0x3414e186 in GSEventRun ()
#30 0x32241430 in -[UIApplication _run] ()
#31 0x3223f95a in UIApplicationMain ()
#32 0x00002852 in main (argc=1, argv=0x2ffff60c) at /Users/adminstrator/Documents/Princess_Pets/main.m:14ator/Documents/Princess_Pets/main.m:14
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T20:26:38+00:00Added an answer on May 17, 2026 at 8:26 pm

    From the backtrace, your problem appears to be in Dot2DotVC directly. In its -dealloc, it’s calling -setCurrentImages: on self, which releases the old value, which appears to be containing a garbage object. In other words, the array property currentImages on your Dot2DotVC contains at least one invalid object by the time -dealloc is called on the view controller.

    As a side note, I strongly encourage you to not use property access in -dealloc. The -dealloc you have listed in your question would be better off as:

    - (void)dealloc {
        [menuVC release];
        [dot2DotVC release];
        [super dealloc];
    }
    

    This avoids any potential issues with overridden setters or lingering KVO observers.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.