标签: ios objective-c switch-statement
我在我的方法中使用switch case,如截图
switch case
我已经完成了 Enumeration 但是如何直接将 int constant 传递给案例? 我用谷歌搜索了它,但我发现它与枚举 请帮帮我
Enumeration
int constant
答案 0 :(得分:0)
如果这是您想要实现的所有功能,那么您应该写下这样的内容:
if (index.row == value) { // logic when it's that row } else { // default case }
您尝试做的事情根本不可能,请参阅Martin R在评论中链接的两个问题。