This line
will work in every method of my UITableViewController except
The array is a synthesized property so it should be accessible anywhere in the class but when I use that line inside of the that method the app crashes without throwing an exception in the console.
Code:
NSLog(@"%@", arrayOfNewsItems);
Code:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
The array is a synthesized property so it should be accessible anywhere in the class but when I use that line inside of the that method the app crashes without throwing an exception in the console.