当前位置: 首页 > 工具软件 > Casein > 使用案例 >

switch case in protected scope 异常解决

仲绍晖
2023-12-01

case添加{ }后,编译错误可解决。

- (void)tabBar:(UITabBar *)tb didSelectItem:(UITabBarItem *)item {

    switch(item.tag) {
        case 0:
        {
        }
            break;
        case 1:
        {
        }
            break;
        default:
            break;
    }
}
 类似资料: