TvOS support for iBeacons

Does tvOS support the same iBeacon features as iOS? My biggest problem is with CoreLocation functionality.

+5
source share
1 answer

All the same functions are not supported, CoreLocation changes for Objective-C .

 Removed CLBeacon Removed CLBeacon.accuracy Removed CLBeacon.major Removed CLBeacon.minor Removed CLBeacon.proximity Removed CLBeacon.proximityUUID Removed CLBeacon.rssi Removed CLBeaconRegion Removed -[CLBeaconRegion initWithProximityUUID:identifier:] Removed -[CLBeaconRegion initWithProximityUUID:major:identifier:] Removed -[CLBeaconRegion initWithProximityUUID:major:minor:identifier:] Removed CLBeaconRegion.major Removed CLBeaconRegion.minor Removed CLBeaconRegion.notifyEntryStateOnDisplay Removed -[CLBeaconRegion peripheralDataWithMeasuredPower:] Removed CLBeaconRegion.proximityUUID 

The full list of iOS APIs available for tvOS applies to: iOS 9.0 tvOS 9.0 API differences

+6
source

Source: https://habr.com/ru/post/1232415/


All Articles