如何将 CBUUID 转换为字符串

Posted

技术标签:

【中文标题】如何将 CBUUID 转换为字符串【英文标题】:How to turn CBUUID into string 【发布时间】:2012-11-07 18:28:06 【问题描述】:

我找不到任何从 CBUUID 中获取 UUID 字符串的官方方法。这些 UUID 可以是 2 或 16 字节长。

我们的目标是将 CBUUID 作为字符串存储在某个文件中,然后使用 [CBUUID UUIDWithString:] 等进行复活。这是我目前所拥有的。

// returns a simple 4 byte string for 16bit uuids, 128 bit uuids are in standard 8-4-4-4-12 format
// the resulting string can be passed into [CBUUID UUIDWithString:]
+(NSString*)CBUUIDToString:(CBUUID*)cbuuid;

    NSData* data = cbuuid.data;
    if ([data length] == 2)
    
        const unsigned char *tokenBytes = [data bytes];
        return [NSString stringWithFormat:@"%02x%02x", tokenBytes[0], tokenBytes[1]];
    
    else if ([data length] == 16)
    
        NSUUID* nsuuid = [[NSUUID alloc] initWithUUIDBytes:[data bytes]];
        return [nsuuid UUIDString];
    

    return [cbuuid description]; // an error?

【问题讨论】:

Apple 刚刚在 ios 7.1 中淘汰了所有这些答案。请参阅下面的答案。 【参考方案1】:

我为 CBUUID 设置了以下类别:

@interface CBUUID (StringExtraction)

- (NSString *)representativeString;

@end

@implementation CBUUID (StringExtraction)

- (NSString *)representativeString;

    NSData *data = [self data];

    NSUInteger bytesToConvert = [data length];
    const unsigned char *uuidBytes = [data bytes];
    NSMutableString *outputString = [NSMutableString stringWithCapacity:16];

    for (NSUInteger currentByteIndex = 0; currentByteIndex < bytesToConvert; currentByteIndex++)
    
        switch (currentByteIndex)
        
            case 3:
            case 5:
            case 7:
            case 9:[outputString appendFormat:@"%02x-", uuidBytes[currentByteIndex]]; break;
            default:[outputString appendFormat:@"%02x", uuidBytes[currentByteIndex]];
        

    

    return outputString;


@end

对于这个输入:

NSLog(@"UUID string: %@", [[CBUUID UUIDWithString:@"0bd51666-e7cb-469b-8e4d-2742f1ba77cc"] representativeString]);
NSLog(@"UUID string2: %@", [[CBUUID UUIDWithString:@"1800"] representativeString]);

它产生以下输出:

UUID string: 0bd51666-e7cb-469b-8e4d-2742f1ba77cc
UUID string2: 1800

并为 16 字节 UUID 保留适当的断字,同时支持简单的 2 字节 UUID。

【讨论】:

喜欢它。它有点复杂,但它确实可以处理其他长度。但 CBUUID 也被记录为 16 位或 128 位。 工作完美!我只是将它复制并粘贴到我的 .m 文件中的 @interface 之前,中提琴!【参考方案2】:

对于所有说 CBUUID 与 CFUUIDRef 桥接免费电话的人来说,事实并非如此。

CBUUID * foo = [CBUUID UUIDWithString:CBUUIDCharacteristicExtendedPropertiesString];
CFStringRef fooBar = CFUUIDCreateString(NULL, (__bridge CFUUIDRef)foo);
if (![CBUUIDCharacteristicExtendedPropertiesString isEqualToString:(__bridge NSString *)fooBar])
    NSLog(@"fubar!");

它没有崩溃,但你正在把垃圾拿出来。它可能是唯一标识垃圾,但不能往返。

PS:这不能用作注释,因为奇怪的是 SO cmets 不允许代码格式化。

【讨论】:

不知道为什么这个被否决 - 马克你在使用布拉德类别风格的解决方案吗?【参考方案3】:

iOS 7.1(测试版于 2013 年 11 月 18 日发布)在 CBUUID 上引入了以下属性:

@property(nonatomic, readonly) NSString *UUIDString

表示为字符串的 UUID。 (只读)

来自CBUUID Class Reference。

还值得注意的是,要将 UUID 字符串与 CBUUID 进行比较,这样可以:

if ([cbuuidInQuestion isEqual:[CBUUID UUIDWithString:@"1234-5678-9012-1234"]]) 
    // isEqual tests for "the same UUID"
    // == tests for "the same CBUUID object"

【讨论】:

有人知道 UUIDString 方法是否是 7.0 中未记录的方法吗? UUIDString 属性已从文档中消失! @TheFinestArtist,不,不是。它还没有合并到公共文档中。我包含的链接是开发人员预览;您需要一个 Apple Developer 帐户才能查看。或者,如果您只是想相信我的话,UUIDString 将在不久的将来成为一个属性。 如果您的目标是 iOS 7.0 而不是 7.1,您可以使用 [[[NSUUID alloc] initWithUUIDBytes:cbuuid.data.bytes] UUIDString] 获取字符串。 我想指出这一点——在 MacOSX 上这仍然很困难(10.9),@0xced 的解决方案对我真的很有帮助【参考方案4】:

我知道它已经 7 个月被问及回答了,但是...CBUUID 是“免费桥接”到CFUUID,最简单的转换方法是

 //CBUUID* uuid = descr.UUID;
 NSString* str = CFUUIDCreateString(nil, uuid);

【讨论】:

这是否适用于两个字节长的 CBUUID?我不明白如何,因为它们只是结构。它们不是免费桥接的。 CFUUID 是简单的结构,而 CBUUID 是一个 NSObject。它们之间有很大的不同。 我很高兴你自己想出来了。对于我们其他人来说,它只是工作。 谁能指出这是记录在哪里? Cocoa Fundamentals 指南中的 CBUUID 标头和免费桥接表都没有记录这个? 我想你会发现它不是免费桥接的。看我的回答。【参考方案5】:

这是布拉德·拉尔森回答的快速扩展:

import CoreBluetooth

extension CBUUID 

    func representativeString() -> String 
        let data = self.data

        let bytesToConvert = data.length
        let uuidBytes = UnsafePointer<CUnsignedChar>(data.bytes)
        var outputString = String()

        for currentByteIndex in 0..<bytesToConvert 
            switch currentByteIndex 
            case 3,5,7,9:
                outputString += String(format: "%02x-",uuidBytes[currentByteIndex])
            default:
                outputString += String(format: "%02x",uuidBytes[currentByteIndex])
            
        

        return outputString
    

从 iOS 7.1 开始,UUIDString 属性已经存在,但对于特定的 iOS7,上述扩展是不错的选择。

【讨论】:

这个答案不再有效,data.bytes 已弃用【参考方案6】:

Objective C 和 Swift 中都有本地方法,这是一种非常直接的方法。

NSString *str = characteristic.UUID.UUIDstring;

Swift 语言也是如此 链接到图书馆-> https://developer.apple.com/documentation/corebluetooth/cbuuid/1518742-uuidstring?language=objc

【讨论】:

【参考方案7】:

Brad 的 answer 完成了它的工作,但使用 NSUUID 类的解决方案可能更简单(尽管可能效率不高):

// CBUUID+ToString.h

#import <CoreBluetooth/CoreBluetooth.h>

@interface CBUUID (ToString)

- (NSString *)toString;

@end

// CBUUID+ToString.m

#import "CBUUID+ToString.h"

@implementation CBUUID (ToString)

- (NSString *)toString 
    if ([self respondsToSelector:@selector(UUIDString)]) 
        return [self UUIDString]; // Available since iOS 7.1
     else 
        return [[[NSUUID alloc] initWithUUIDBytes:[[self data] bytes]] UUIDString]; // iOS 6.0+
    


@end

【讨论】:

OSX 10.10 (Yosemite) 也有 UUIDString 可用 initWithUUIDBytes: 需要 8 个字节的数据。如果是 16 位 CBUUID,这是未定义的行为。 “CBUUID 类的实例代表 128 位通用唯一标识符”,因此代码有效。【参考方案8】:

以下工作没有任何错误:

NSString *str = [[NSString alloc] initWithFormat:@"%@",  CFUUIDCreateString(nil, peripheral.UUID) ];

【讨论】:

这是可行的,因为外围 UUID 不是 CBUUID。 CBUUID 不是 CFUUID。当交给 CBUUID 时它会爆炸。 请查看 bioffe 的回复。

以上是关于如何将 CBUUID 转换为字符串的主要内容,如果未能解决你的问题,请参考以下文章

如何将字符串转换为整型数?

在javascript中如何将字符串转换为数组和数组转换为字符串

如何将数据实体转换为 JSON 字符串

c# 如何将字符串转换成url

如何将数据实体转换为 JSON 字符串

arduino 中如何将字符串型转换为float型?