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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:13:42+00:00 2026-05-13T18:13:42+00:00

Here Im Getting memory leak at eventTextField.keyboardAppearance = UIKeyboardAppearanceDefault; I declared the textfield globally

  • 0

Here Im Getting memory leak at

eventTextField.keyboardAppearance  = UIKeyboardAppearanceDefault;

I declared the textfield globally and I allocated the text field in CellForRowAtIndex and my code is:

if(indexPath.section == 1)
{
    eventTextField = [[UITextField alloc]initWithFrame:CGRectMake(10, 15, 300, 50)];
    eventTextField.placeholder = @"Event Name:";
    [eventTextField setFont:[UIFont boldSystemFontOfSize:14]];
    eventTextField.returnKeyType = UIReturnKeyNext;
    eventTextField.keyboardAppearance  = UIKeyboardAppearanceDefault;
    eventTextField.keyboardType = UIKeyboardTypeDefault;
    eventTextField.delegate=self;
    if(isRightButton == YES)
    {
        eventTextField.enabled = NO;
    }
    else
    {
        eventTextField.enabled = YES;
    }
    if([event.eventName length] > 0)
    {
        eventTextField.text = event.eventName;
    }
    else
    {
        eventTextField.text = @"";
    }
    [elementView addSubview:eventTextField];
    cell.accessoryType = UITableViewCellAccessoryNone;
}

and I release the textfield in dealloc.
when Im checking the object allocations it showing leak at:
eventTextField.keyboardAppearance = UIKeyboardAppearanceDefault;

guys please help me to get out of this.
Anyone’s help will be appreciated.

Thank you,
Monish Kumar.

  • 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-13T18:13:42+00:00Added an answer on May 13, 2026 at 6:13 pm

    Simply add:

    [eventTextField release]
    

    after:

    [elementView addSubview:eventTextField];
    

    This works because addSubview will retain the subview and release it when the view itself is released, so you can safely release the textfield after adding it to the view.

    Golden Rule: Anytime you call alloc or copy or retain, you should always call release (or autorelease).

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

Sidebar

Related Questions

I'm getting an instruments Memory Leak with this iPhone 3.0 SDK code. I'm using
I have a hard time grasping this memory leak in my code. Basically it's
I keep getting a memory leak indication from this sql statement when I assign
I must be getting a memory leak, I'm calling a graph library view and
I'm getting a memory leak somewhere in my program, and using some tools I
Anybody tried here using Getting Real(37Signals) approach to develop windows application? (C#/.NET). Or simply
here is the input i am getting from my flash file process.php?Q2=898&Aa=Grade1&Tim=0%3A0%3A12&Q1=908&Bb=lkj&Q4=jhj&Q3=08&Cc=North%20America&Q0=1 and in
Here's the problem: In C# I'm getting information from a legacy ACCESS database. .NET
I couldn't find anything about getting the total JSON record count using jQuery. Here
I am trying to evaluate the answer provided here , and am getting the

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.