Erkennen Sie, ob das Gerät iPad oder iPhone Swift ist

if UIDevice.current.userInterfaceIdiom == .pad {
     // iPad
 } else {
     // not iPad (iPhone, mac, tv, carPlay, unspecified)
 }
Nayan Dave (iOS Dev.)