1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Xcodeで「Enumeration values <value> not handled in switch」の警告が出たときの対応

Last updated at Posted at 2015-01-05

対応方法:
switch文にdefault句を追加する

switch (myenum)  {
    case 1:
        break;
    case 2:
        break;
    default:
        break;
}

今後、各種SDKの更新で列挙型(Enum)で指定できる定数が増えると、同じ警告メッセージが表示されるので注意が必要

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?