より良いエンジニアを目指して

1日1つ。良くなる!上手くなる!

Supported iPhone orientations are not matched pairs

Supported iPhone orientations are not matched pairs

という警告が。

stackoverflow.com

f:id:rimever:20220103174042p:plain

 <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    <key>UISupportedInterfaceOrientations~ipad</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationPortraitUpsideDown</string>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>

特にOrientationはデバイスの向きに任せるとしてOrientationをPortraitにしたところ、警告は出なくなりました。