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 3670824
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T02:24:44+00:00 2026-05-19T02:24:44+00:00

Hi I was wanted to do Application witch have a root template view with

  • 0

Hi I was wanted to do Application witch have a root template view with a nice logo on top or something adn load other views just below

(here is what I have right now: Test App
)

But I have a little problem. If I’ll remove a comment in file TestAppDelegate.m on line 58

    //[currentView release];

Application will crash with bunch of errors when I try to switch views.
But if I comment this line Project analyzer is telling me that I have a potential leak
with currentView variable.

Can somebody spare some time and see in that code what I did wrong?

  • 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-19T02:24:45+00:00Added an answer on May 19, 2026 at 2:24 am

    The problem is that you are only adding currentView.view as a subview so that is being retained elsewhere but currentView itself is not. This means that when you release it, it is consequently dealloc’d and its view will have difficulty working without it.

    One solution would be to have currentView as an instance variable and create a property for it so that the memory mangement is done for you.

    @property (nonatomic, retain) UIViewController *currentView;
    

    and then replace a line like

    currentView = [[First alloc] initWithNibName:@"First" bundle:nil];
    

    with

    self.currentView = [[First alloc] initWithNibName:@"First" bundle:nil];
    

    This will release the old view controller before retaining the new one. Then lastly don’t forget to release currentView in the dealloc method of the class.

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

Sidebar

Related Questions

I have a quick little application and wanted to give a try to develop
Let's say I wanted to have an application that could easily switch the DB
I have a medium sized application written in c++ using Qt. I wanted to
I wanted to try a little design by contract in my latest C# application
I just wanted to pause in an F# console application, so I wrote: Console.ReadKey()
In a previous job we had a classic ASP application that no one wanted
I have a simple application using netbeans for developing and maven for building et
I wanted to see if folks were using decimal for financial applications instead of
If you had some social networking applications and you wanted your users to interact
Wanted to convert <br/> <br/> <br/> <br/> <br/> into <br/>

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.