So I have an Array "myArray" with NSNumbers and NSStrings. I need them in another View so i go like this:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
DetailViewController *details = [[DetailViewController alloc] initWithNibName:@"DetailView" bundle:nil];
details.subjectText = [[myArray objectAtIndex:indexPath.row] objectForKey:@"subject"];
The subjectText works. But how can I get the Numbers out of it? (I actually need them as strings...) I would convert a String out of a Number like this: NSString *blah = [NSNumber intValue]. But I don't know how to set it up in the code above..