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

  • SEARCH
  • Home
  • 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 7515471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T00:49:03+00:00 2026-05-30T00:49:03+00:00

In my viewController.m I have this code: self.movie = [[myMovie alloc]init]; self.movie.name = @Iron

  • 0

In my viewController.m I have this code:

self.movie = [[myMovie alloc]init];
self.movie.name = @"Iron man 2"; \\this line leaks

…

nameLbl = [[UILabel alloc] initWithFrame:CGRectMake(30, 20, 200, 20)]; \\this line leaks
nameLbl.backgroundColor = [UIColor clearColor];

In viewController.h I have this code:

@interface ViewController : UIViewController

{
    myMovie * movie;

    UILabel * nameLbl;
}

@property (nonatomic, retain) myMovie * movie;
@property (nonatomic, retain) UILabel * nameLbl;

And myMovie.h:

{
    NSString* name;
}

@property (nonatomic, retain) NSString* name;

myMovie.m:

#import "myMovie.h"

@implementation myMovie
@synthesize name, gross, desc;



-(void) dealloc
{
    self.name = nil;
    self.gross = nil;
    self.desc = nil;

    [super dealloc];
}

@end

Of course this is only the necessary code. I can’t figure out why it is leaking. I don’t know if this is the cause but my application crashes.

  • 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-30T00:49:05+00:00Added an answer on May 30, 2026 at 12:49 am

    The line that’s leaking is the one above: self.movie = [[myMovie alloc]init];

    Change it to self.movie = [[[myMovie alloc]init] autorelease]; or add [self.movie release]; as the line immediately afterwards.

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

Sidebar

Related Questions

At the end of this code: UIViewController *viewController = [[UIViewController alloc] init]; UINavigationController *navigationController
I have this code: ViewController .h @property IBOutlet UITextField *field; ViewController .m @synthesize field;
I have this code in a prepareForSegue method // Get destination view UIViewController *viewController
Hello, I have this code in my AppDelegate : [window addSubview:viewController.view]; [window makeKeyAndVisible]; return
I have this code in my app to do a transition for a viewcontroller
I have a UITableView which loads through it's navigationController a new viewcontroller. This code
I have this code in my viewController: - (GraphModel *)graphModel { if (!graphModel) {
//viewcontroller.m -(void)viewdidLoad { self.theOneViewController= [[TheOneViewController alloc]init]; [contentsView addSubview:self.theOneViewController.view]; } //theOneViewController - (void)viewDidLoad { .
I'm developing an iOS 4 application. I have this ViewController: @interface BlogViewController : UIViewController
I have one ViewController, in this i have added one Custom UIView named as

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.