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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T10:28:31+00:00 2026-05-30T10:28:31+00:00

I have a custom view class which is a subclass of UITableViewCell. I have

  • 0

I have a custom view class which is a subclass of UITableViewCell.

I have two other custom view classes which inherit from this subclass (they share a lot of the same properties but were different enough to warrant separate classes).

I’ve declared the shared properties in MyParentCell and also declared their unique properties in the respective classes.

UITableViewCell
      |
      |
 MyParentCell // defines propertyA and propertyB, both IBOutlet subviews
     / \
    /   \
   /     \
  |       |
  |     ChildClass1 // defines propertyC, an IBOutlet subview
  |
ChildClass2 // defines property D, an IBOutlet subview

My question is: Since I’m using ARC and cannot explicitly call [super delloc]; when I’m defining dealloc: in ChildClass1 and ChildClass2 do, I have to release all of the subviews they own in each class, or will MyParentCell#dealloc still be called too?

i.e.,

Do I have to write this:

// ChildClass1.m
@implementation ChildClass1

-(void)dealloc
{
    self.propertyA = nil;
    self.propertyB = nil;
    self.propertyC = nil;
}
@end

// ChildClass2.m
@implementation ChildClass2

-(void)dealloc
{
    self.propertyA = nil;
    self.propertyB = nil;
    self.propertyD = nil;
}
@end

Or is it enough to write:

// MyParentCell
@implementation MyParentCell

-(void)dealloc
{
    self.propertyA = nil;
    self.propertyB = nil;
}
@end

// ChildCell1.m
@implementation ChildCell1

-(void)dealloc
{
    self.propertyC = nil;
}
@end    

// ChildCell2.m
@implementation ChildCell2

-(void)dealloc
{
    self.propertyD = nil;
}
@end

If the second approach is fine, can someone explain when and how MyParentCell#dealloc is called?

If the first approach is necessary, that sucks :/

  • 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-30T10:28:32+00:00Added an answer on May 30, 2026 at 10:28 am

    Of course, also with ARC every class is responsible to clean up only its own resources. If you define a dealloc in a subclass, it’s calling the parent’s dealloc implicitly at the end of your method. You just don’t have to type it.

    If you just release instance variables or properties, you can rely on ARC to do this for you after the whole dealloc chain is done. ARC silently implements .cxx_destruct which gets called from NSObject’s dealloc and takes care of releasing anything strong in your class.

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

Sidebar

Related Questions

i have created a custom view class which is a subclass of UIview class
I have a custom model class which contains a decimal member and a view
I have an application where I have one custom view which is derived from
I am writing a custom NSView subclass. I have several instances of this class
I have a custom-made view that extends the View class. I would like 2
I have a GridView in which each row has a custom view. The grid
I have a custom component which consists of 2 text view and 4 toggle
HI have a custom view class that is loaded and placed within my main
in app i have custom tableview(UITableView *tableView) which subclass of uiviewcontroller & in tableview
I have a custom view to which I need to add a couple of

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.