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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:41:24+00:00 2026-05-23T16:41:24+00:00

i have created a script, witch load the XML from server parse it an

  • 0

i have created a script, witch load the XML from server parse it an save it to NSMutableArray

[kategorienArray addObject:catName];

catName ist a String, if i NSLog the Array everything works fine.

After that i have created a tebleview, and reload Data

[kategorienAuswahl reloadData];

KategorienAuswahl is my TableView

and now a get the Problems

if i Use a “normal” array

NSArray *array = [[NSArray alloc] initWithObjects:@"iPhone", @"iPod", @"iPad",nil];
    self.listData = array;
    [array release];

the will be displayed, but if i use

cell.textLabel.text = [kategorienArray objectAtIndex:row]; 

i get EXC_BAD_ACCESS

instead it works fine with

cell.textLabel.text = [listData objectAtIndex:row]; 

I Add nwo

kategorienArray = [[NSMutableArray alloc] init];
    kategorienArray = [NSMutableArray arrayWithCapacity:10];

but now i get no data in my Tableview

  • 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-23T16:41:25+00:00Added an answer on May 23, 2026 at 4:41 pm

    You might not have initialized your kategorienArray.
    Do you have a kategorienArray = [[NSMutableArray alloc] init]; in your code? You should have done this before adding objects to it and then accessing them.

    Also, make sure your array is retained at the point where it’s created, so that the system doesn’t reclaim its memory before you access its items. The way I use to make sure things are going right is to declare the mutable array as a property. In your viewcontroller’s .h file put

    @property (nonatomic, retain) NSMutableArray *kategorienArray;
    

    and in your .m file put

    @synthesize kategorienArray;
    

    at the top and then

    self.kategorienArray = [NSMutableArray array];
    

    in viewDidLoad or somewhere, before adding items to it.

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

Sidebar

Related Questions

I have created a PHP-script to update a web server that is live inside
I have a script that asynchronously loads image src from XML file. The sources
I have created a simple JQuery script with hovering effect on some links. The
I have created a Greasemonkey script that runs fine in the firebug editor, with
I'm a jQuery newbie, and I have trouble with a little script I created.
I have created script to find selectivity of each columns for every tables. In
I have created a script that saves some files in the Documents directory of
I have created a script to run a test script on a batch of
I have created a shell script to backup my webfiles + database dump, put
I have created a PHP script and I am lacking to extract the primary

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.