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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:18:33+00:00 2026-05-13T06:18:33+00:00

this my problem i have a class X that inherits UITableViewController class and a

  • 0

this my problem i have a class X that inherits UITableViewController class and a class Y that inherits the X class, when i try to override a method in the Y class the method in the X class is invoked… and i can’t find references to understand what’s happening… can anyone help me?

Thanks in advance!

Code!

mluListBuilder.h

#import <UIKit/UIKit.h>

@interface mluListBuilder : UITableViewController {
    NSString                *sListTitle;
    NSString                *sEntityName;
    NSArray                 *aEntityProperties;
    NSMutableArray          *maListRecords;
    NSManagedObjectContext  *mocList;
    NSFetchRequest          *frListRecords;
    NSEntityDescription     *edListRecords;
    NSArray                 *aOrderByProperties;
    NSArray                 *aToolBarItems;
    NSArray                 *aToolBarItemsActions;
}

@property (nonatomic, retain) NSString                  *sListTitle;
@property (nonatomic, retain) NSString                  *sEntityName;
@property (nonatomic, retain) NSArray                   *aEntityProperties;
@property (nonatomic, retain) NSMutableArray            *maListRecords;
@property (nonatomic, retain) NSManagedObjectContext    *mocList;
@property (nonatomic, retain) NSFetchRequest            *frListRecords;
@property (nonatomic, retain) NSEntityDescription       *edListRecords;
@property (nonatomic, retain) NSArray                   *aOrderByProperties;
@property (nonatomic, retain) NSArray                   *aToolBarItems;
@property (nonatomic, retain) NSArray                   *aToolBarItemsActions;


- (id) initWithStyle:           (UITableViewStyle)  style
    listTitle:                  (NSString *)        psListTitle
    entityName:                 (NSString *)        psEntityName 
    entityProperties:           (NSArray *)         paEntityProperties
    orderListByProperties:      (NSArray *)         paOrderByProperties
    toolBarItems:               (NSArray *)         paToolBarItems
    toolBarItemsActions:        (NSArray *)         paToolBarItemsActions;

- (void)newRecord;
- (void)deleteRecord;

@end

mluListBuilder.m

#import "mluListBuilder.h"

@implementation mluListBuilder

@synthesize sListTitle,
            sEntityName,
            aEntityProperties,
            maListRecords,
            mocList,
            frListRecords,
            edListRecords,
            aOrderByProperties,
            aToolBarItems,
            aToolBarItemsActions;


- (id) initWithStyle:           (UITableViewStyle)  style
    listTitle:                  (NSString *)        psListTitle
    entityName:                 (NSString *)        psEntityName 
    entityProperties:           (NSArray *)         paEntityProperties
    orderListByProperties:      (NSArray *)         paOrderByProperties
    toolBarItems:               (NSArray *)         paToolBarItems
    toolBarItemsActions:        (NSArray *)         paToolBarItemsActions
{

    sListTitle              = psListTitle;
    sEntityName             = psEntityName;
    aEntityProperties       = paEntityProperties;
    aOrderByProperties      = paOrderByProperties;
    aToolBarItems           = paToolBarItems;
    aToolBarItemsActions    = paToolBarItemsActions;

    if (self = [super initWithStyle:style]) {
    }
    return self;
}

- (void)viewDidLoad {
    self.title = NSLocalizedString(sListTitle, nil);

    if ([aToolBarItems count] > 0) {
        NSMutableArray *maToolBarItems = [[NSMutableArray alloc] init];
        self.navigationController.toolbarHidden = NO;
        for (int i = 0; i < [aToolBarItems count]; i++) {
            UIBarButtonItem * bbiToolBarItem = [[UIBarButtonItem alloc] 
                                                initWithTitle:NSLocalizedString([aToolBarItems objectAtIndex:i], nil)
                                                style:UIBarButtonItemStyleBordered
                                                target:self 
                                                action:NSSelectorFromString([aToolBarItemsActions objectAtIndex:i])
                                                ];


            [maToolBarItems addObject:bbiToolBarItem];
        }
        self.toolbarItems = maToolBarItems;
    } else {
        self.navigationController.toolbarHidden = YES;
    }

    if (mocList != nil) {
        frListRecords = [[NSFetchRequest alloc] init];

        NSSortDescriptor *sdListRecords = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];

        [frListRecords setSortDescriptors:[[NSArray alloc] initWithObjects:sdListRecords, nil]];

        edListRecords = [NSEntityDescription entityForName:sEntityName inManagedObjectContext:mocList];

        [frListRecords setEntity:edListRecords];

        NSError *errFetchRequest;
        maListRecords = [[mocList executeFetchRequest:frListRecords error:&errFetchRequest] mutableCopy];
    }
    [super viewDidLoad];
}

- (void)viewWillAppear:(BOOL)animated {
    NSError *errFetchRequest;
    maListRecords = [[mocList executeFetchRequest:frListRecords error:&errFetchRequest] mutableCopy];
    [self.tableView reloadData];

    if (self.navigationController.toolbarHidden == YES) {
        if ([aToolBarItems count] > 0) {
            self.navigationController.toolbarHidden = NO;
        }
    }
}

- (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;
}


#pragma mark Table view methods

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}


// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [maListRecords count];
}


// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    for (UIView *vwExisting in cell.contentView.subviews) {
        [vwExisting removeFromSuperview];
    }

    NSEntityDescription *edCurrentRecord = [maListRecords objectAtIndex:indexPath.row];

    UILabel *lblCell = [[UILabel alloc] initWithFrame:CGRectMake(5.0, 5.0, 280, 20.0)];
    [lblCell setText:edCurrentRecord.name];

    [cell.contentView addSubview:lblCell];

    [cell setSelectionStyle:UITableViewCellSelectionStyleNone];

    return cell;
}


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    // Navigation logic may go here. Create and push another view controller.
    // AnotherViewController *anotherViewController = [[AnotherViewController alloc] initWithNibName:@"AnotherView" bundle:nil];
    // [self.navigationController pushViewController:anotherViewController];
    // [anotherViewController release];
}

- (void)dealloc {
    [super dealloc];
}

- (void)newRecord {
    NSLog(@"%@", [self class]);
}

- (void)deleteRecord {

}

@end

mluLawyerCaseSituationsList.h

#import <Foundation/Foundation.h>
#import "mluListBuilder.h";

@interface mluLawyerCaseSituationsList : mluListBuilder {

}

- (void)newRecord;

@end

mluLawyerCaseSituationsList.m

#import "mluLawyerCaseSituationsList.h"

@implementation mluLawyerCaseSituationsList

- (void)newRecord {
    NSLog(@"%@", [self class]);
}

@end

Calling the mluLawyerCaseSituationsList

mluLawyerCaseSituationsList *vcCaseSituations = [[mluListBuilder alloc]
                                                     initWithStyle:UITableViewStylePlain
                                                     listTitle:@"titCaseSituations" 
                                                     entityName:@"case_situations" 
                                                     entityProperties:[[NSArray alloc] initWithObjects:@"name", nil] 
                                                     orderListByProperties:[[NSArray alloc] initWithObjects:@"name", nil] 
                                                     toolBarItems:[[NSArray alloc] initWithObjects:@"btNew", nil]
                                                     toolBarItemsActions:[[NSArray alloc] initWithObjects:@"newRecord", nil]
                                                     ];

Output… 🙁

2009-12-17 17:30:02.726 mluLawyer[2862:20b] mluListBuilder

Hope it helps…

  • 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-13T06:18:34+00:00Added an answer on May 13, 2026 at 6:18 am

    I’ve been looking through your code only briefly, but it seems obvious (from code and from the output) that you allocate an instance of class X (mluListBuilder).

    Of course, you cannot expect to have a method of class Y (mluLawyerCaseSituationsList), performed when Y is derived from X and the object is of class X.

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

Sidebar

Ask A Question

Stats

  • Questions 371k
  • Answers 371k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Windows Presentation Foundation (WPF) will be a good way to… May 14, 2026 at 6:54 pm
  • Editorial Team
    Editorial Team added an answer The following dependency uses 2.1.2 version of iText, not sure… May 14, 2026 at 6:54 pm
  • Editorial Team
    Editorial Team added an answer What type of persistent store are you using? SQLite or… May 14, 2026 at 6:54 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.