When converting a project to use ARC what does “switch case is in protected scope” mean?

前端 未结 8 1361
忘了有多久
忘了有多久 2020-11-29 17:08

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

8条回答
  •  眼角桃花
    2020-11-29 17:46

    Surround with braces {} the code between the case statement and the break in each case. It worked on my code.

提交回复
热议问题