Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iOSデバイスが現在コンピューター(Wifiとケーブル)に接続されているかどうかを確認したい
私はそれをグーグルで検索してAppleDeveloperサイトを調べましたが、私の質問に関連するものは何も見つからなかったようです。
デバイスが物理的に接続されている場合、次のようにバッテリーの状態を確認できます。
UIDeviceBatteryState myBatteryState = [UIDevice currentDevice].myBatteryState; if (myBatteryState == UIDeviceBatteryStateCharging) { //code } else if (myBatteryState == UIDeviceBatteryStateFull) { //code }