When converting a project to use ARC what does "switch case is in protected scope" mean? I am converting a project to use ARC, using Xcode 4 Edit -> Refactor -> Convert to Objective-C ARC... One of the errors I get is "switch case is in protected scope" on "some" of the switches in a switch case.

Edit, Here is the code:

the ERROR is marked on the "default" case:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"";
    UITableViewCell *cell ;
    switch (tableView.tag) {
        case 1:
            CellIdentifier = @"CellAuthor";
            cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
            if (cell == nil) {
                cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        }
        cell.textLabel.text = [[prefQueries objectAtIndex:[indexPath row]] valueForKey:@"queryString"];
        break;
    case 2:
        CellIdentifier = @"CellJournal";
        cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        }
        cell.textLabel.text = [[prefJournals objectAtIndex:[indexPath row]] valueForKey:@"name"];

        NSData * icon = [[prefJournals objectAtIndex:[indexPath row]] valueForKey:@"icon"];
        if (!icon) {
            icon = UIImagePNGRepresentation([UIImage imageNamed:@"blank72"]);
        }
        cell.imageView.image = [UIImage imageWithData:icon];

        break;

    default:
        CellIdentifier = @"Cell";
        cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
            }
        break;
    }


    return cell;
}
link|improve this question

Post the code of the switch statement. – Zaph Sep 26 '11 at 23:12
feedback

2 Answers

up vote 50 down vote accepted

Surround each case itself with braces {}. That should fix the issue (it did for me in one of my projects).

link|improve this answer
1  
Wow! It worked! but why?! – Ali Sep 27 '11 at 0:03
4  
The braces help the compiler understand scope. I know GCC used to issue a warning if you declared a new variable at the first line of a case statement without the braces, and the WWDC 2011 video on ARC mentions something about enclosing cases in braces. If you want to know why, check out that video—I can't remember off the top of my head. – Inspire48 Sep 27 '11 at 0:16
6  
It's been a while, but I seem to remember something in the C standard that didn't allow variable assignment after a case statement because the code is not really inside of a block. By adding curly braces {...} after the case and before the break, everything inside is in a scoped block and will behave as expected. I've gotten to the point that I just automatically make a block out of my case statements to avoid this kind of problem. – Paul Sep 27 '11 at 0:16
I ran into the same issue. It is a horrible error message and a bug has been filed (which will be fixed in a future version of the compiler) to correct it. But, yes, the scoping rules within case statements in C are really very... odd. – bbum Sep 27 '11 at 4:12
feedback

Hard to be sure without looking at the code, but it probably means there's some variable declaration going on inside the switch and the compiler can't tell if there's a clear path to the required dealloc point.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.