我想知道在 ta switch 语句的情况下是否有可能有一个 (||)"or" 或 (&&)"and" 运算符。
这就是我的想法。
switch (orientation) {
case UIDeviceOrientationPortrait:
{
case (UIDeviceOrientationLandscapeLeft || UIDeviceOrientationLandscapeRight):
}
break;
//...
如果有人可以帮助我,我将不胜感激:)