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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T07:18:38+00:00 2026-05-20T07:18:38+00:00

Hey guys, my app crashes upon load and it throws up this when debugging:

  • 0

Hey guys,
my app crashes upon load and it throws up this when debugging:

2011-02-26 00:24:33.254 LCPapers[5182:207] Set up the cell...
2011-02-26 00:24:33.255 LCPapers[5182:207] 0
2011-02-26 00:24:33.257 LCPapers[5182:207] -[NSCFString objectAtIndex:]: unrecognized selector sent to instance 0x4b175f0
2011-02-26 00:24:33.261 LCPapers[5182:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSCFString objectAtIndex:]: unrecognized selector sent to instance 0x4b175f0'

It’d be really great if someone could tell me what to fix, as I’m fairly new and the hours spent frustrated over this have been horrible!

RootViewController.h

#import <UIKit/UIKit.h>
@class OverlayViewController;
@interface RootViewController : UITableViewController {

    NSArray *tableDataSource;
    NSString *CurrentTitle;
    NSInteger CurrentLevel;
    IBOutlet UITableView *tableView;
    NSDictionary *data;
    BOOL letUserSelectRow;

    OverlayViewController *ovController;

}
@property (nonatomic, retain) NSArray *tableDataSource;
@property (nonatomic, retain) NSString *CurrentTitle;
@property (nonatomic, readwrite) NSInteger CurrentLevel;
@property (nonatomic, retain) NSDictionary *data;

@end

and my RootViewController.m

#import "RootViewController.h"
#import "DetailViewController.h"
#import "LCPapersAppDelegate.h"

@implementation RootViewController
@synthesize tableDataSource, CurrentTitle, CurrentLevel;
@synthesize data;
#pragma mark -
#pragma mark View lifecycle


- (void)viewDidLoad {
    [super viewDidLoad];
    // Override point for customization after application launch.
    NSString *Path = [[NSBundle mainBundle] bundlePath];
    NSString *DataPath = [Path stringByAppendingPathComponent:@"data.plist"];

    NSDictionary *tempDict = [[NSDictionary alloc] initWithContentsOfFile:DataPath];
    self.data = tempDict;
    [tempDict release];

    if(CurrentLevel == 0) {
        NSLog(@"Initialize our table data source");
        //Initialize our table data source
        self.navigationItem.title = @"Leaving Cert. Papers";

        NSArray *tempArray = [[NSArray alloc] init];
        self.tableDataSource = tempArray;
        [tempArray release];


        self.tableDataSource = [data objectForKey:@"Rows"];

    }
    else 
        NSLog(@"self.navigationItem.title = CurrentTitle;");

    self.navigationItem.title = CurrentTitle;   

}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
    // Release anything that's not essential, such as cached data
}

#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 {
    NSLog(@"Customize the number of rows in the table view.");
    return [self.tableDataSource count];
}


// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"Customize the appearance of table view cells.");
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    }
    // Set up the cell...
    NSLog(@"Set up the cell...");
    NSLog(@"%d", indexPath.row);
    NSDictionary *dictionary = [self.tableDataSource objectAtIndex:indexPath.row];
    NSArray *array = [dictionary objectForKey:@"Title"];
    cell.text = [array objectAtIndex:indexPath.row];

    return cell;
}



- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    //Get the selected Subject

    NSString *selectedSubject = nil;

        NSDictionary *dictionary = [self.tableDataSource objectAtIndex:indexPath.row];
        NSArray *array = [dictionary objectForKey:@"Title"];
        selectedSubject = [array objectAtIndex:indexPath.row];


    //Initialize the detail view controller and display it.
    DetailViewController *dvController = [[DetailViewController alloc] initWithNibName:@"DetailView" bundle:[NSBundle mainBundle]];
    dvController.selectedSubject = selectedSubject;
    [self.navigationController pushViewController:dvController animated:YES];

    [dvController release];
    dvController = nil;
}

- (NSIndexPath *)tableView :(UITableView *)theTableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    if(letUserSelectRow)
        return indexPath;
    else
        return nil;
}

- (UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {

    //return UITableViewCellAccessoryDetailDisclosureButton;
    return UITableViewCellAccessoryDisclosureIndicator;
}

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {

    [self tableView:tableView didSelectRowAtIndexPath:indexPath];
}




- (void)dealloc {
    [data release];
    [ovController release];

    [super dealloc];
}


@end

At Luca Bernardi’s request, heres the plist:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Rows</key>
    <array>
        <dict>
            <key>Title</key>
            <string>English</string>
            <key>Children</key>
            <array>
                <dict>
                    <key>Title</key>
                    <string>Paper 1</string>
                    <key>Children</key>
                    <array>
                        <dict>
                            <key>Title</key>
                            <string>2010</string>
                        </dict>
                        <dict>
                            <key>Title</key>
                            <string>2009</string>
                        </dict>
                    </array>
                </dict>
                <dict>
                    <key>Title</key>
                    <string>Paper 2</string>
                    <key>Children</key>
                    <array>
                        <dict>
                            <key>Title</key>
                            <string>2010</string>
                        </dict>
                        <dict>
                            <key>Title</key>
                            <string>2009</string>
                        </dict>
                    </array>
                </dict>
            </array>
        </dict>
        <dict>
            <key>Title</key>
            <string>Maths</string>
            <key>Children</key>
            <array>
                <dict>
                    <key>Title</key>
                    <string>Higher</string>
                    <key>Children</key>
                    <array>
                        <dict>
                            <key>Title</key>
                            <string>Paper 1</string>
                            <key>Children</key>
                            <array>
                                <dict>
                                    <key>Title</key>
                                    <string>2010</string>
                                    <key>Url</key>
                                    <string>http://x.ie/LC003ALP100EV.pdf</string>
                                </dict>
                                <dict>
                                    <key>Title</key>
                                    <string>2009</string>
                                    <key>Url</key>
                                    <string>http://x.ie/LC003ALP100EV.pdf</string>
                                </dict>
                            </array>
                        </dict>
                        <dict>
                            <key>Title</key>
                            <string>Paper 2</string>
                            <key>Children</key>
                            <array>
                                <dict>
                                    <key>Title</key>
                                    <string>2010</string>
                                    <key>Url</key>
                                    <string>http://examinations.ie/archive/exampapers/2010/LC003ALP200EV.pdf</string>
                                </dict>
                                <dict>
                                    <key>Title</key>
                                    <string>2009</string>
                                    <key>Url</key>
                                    <string>http://examinations.ie/archive/exampapers/2009/LC003ALP200EV.pdf</string>
                                </dict>
                            </array>
                        </dict>
                    </array>
                </dict>
                <dict>
                    <key>Title</key>
                    <string>Ordinary</string>
                    <key>Children</key>
                    <array>
                        <dict>
                            <key>Title</key>
                            <string>Paper 1</string>
                            <key>Children</key>
                            <array>
                                <dict>
                                    <key>Title</key>
                                    <string>2010</string>
                                    <key>Url</key>
                                    <string>http://www.examinations.ie/archive/exampapers/2010/LC003GLP100EV.pdf</string>
                                </dict>
                                <dict>
                                    <key>Title</key>
                                    <string>2009</string>
                                    <key>Url</key>
                                    <string>http://www.examinations.ie/archive/exampapers/2009/LC003GLP100EV.pdf</string>
                                </dict>
                            </array>
                        </dict>
                        <dict>
                            <key>Title</key>
                            <string>Paper 2</string>
                            <key>Children</key>
                            <array>
                                <dict>
                                    <key>Title</key>
                                    <string>2010</string>
                                    <key>Url</key>
                                    <string>http://www.examinations.ie/archive/exampapers/2010/LC003GLP200EV.pdf</string>
                                </dict>
                                <dict>
                                    <key>Title</key>
                                    <string>2009</string>
                                    <key>Url</key>
                                    <string>http://www.examinations.ie/archive/exampapers/2009/LC003GLP200EV.pdf</string>
                                </dict>
                            </array>
                        </dict>
                    </array>
                </dict>
            </array>
        </dict>
    </array>
</dict>
</plist>
enter code here
  • 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-20T07:18:39+00:00Added an answer on May 20, 2026 at 7:18 am

    At this line you are actually fetching a string (“English“):

    NSArray *array = [dictionary objectForKey:@"Title"];
    

    next you do:

    selectedSubject = [array objectAtIndex:indexPath.row];
    

    this crashes because the object is a string, not an array.

    This should work:

    NSDictionary *dictionary = [self.tableDataSource objectAtIndex:indexPath.row];
    cell.text = [dictionary objectForKey:@"Title"];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey guys, This is my first time making an app with any kind of
Hey guys how can I make an app keep playing an mp3 after pressed
Hey guys this is my html code: <div class=nakupy> <li class=icn_kategorie><a href=#>Nákupy</a> <div class=sub_menu>
hey guys having this really simple problem but cant seem to figure out have
Hey guys - I just wrote an app using c# and ready to deploy
Hey guys I have a problem with an app I'm making. The thing is
Hey guys I have a ruby on rails app with a before filter setup
Hey guys I am having trouble trying to convert my web app to support
Hey guys, I'm working on a cakephp app that manages a list of alpha
Hey guys, I'm currently testing my app by adding the setting bundle into my

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.