Я нашел решение для моей проблемы:
adData = advertisementData[CBAdvertisementDataManufacturerDataKey]
let data : NSData = adData as! NSData
var str1 : String = data.description
str1 = str1.replacingOccurrences(of: "<", with: "")
str1 = str1.replacingOccurrences(of: ">", with: "")
if let value = Int(str1, radix: 16) {
print(value)
DataInt=value
}
Таким образом, я могу получить значение advertisingData [CBAdvertisingDataManufacturerDataKey] с типом int в десятичном виде в переменной DataInt.
Надеюсь, это будет полезно для вас