12

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?
}
4

8 に答える 8

33

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

シンプルな 2 バイト UUID をサポートしながら、16 バイト UUID の適切なハイフネーションを保持します。

于 2012-11-07T23:49:03.667 に答える
7

iOS 7.1 (2013 年 11 月 18 日、昨日リリースされたベータ版) では、次のプロパティが導入されましたCBUUID

@property(nonatomic, readonly) NSString *UUIDString

文字列として表される UUID。(読み取り専用)

CBUUID Class Referenceから。

CBUUIDUUID 文字列を と比較する場合、これが機能することにも注意してください。

if ([cbuuidInQuestion isEqual:[CBUUID UUIDWithString:@"1234-5678-9012-1234"]]) {
    // isEqual tests for "the same UUID"
    // == tests for "the same CBUUID object"
}
于 2013-11-20T00:21:41.213 に答える
4

質問されて回答されてから 7 か月経っていることはわかっていますが、...CBUUIDは「フリーダイヤルでブリッジ」されてCFUUIDおり、変換する最も簡単な方法は次のとおりです。

 //CBUUID* uuid = descr.UUID;
 NSString* str = CFUUIDCreateString(nil, uuid);
于 2013-02-16T01:14:18.837 に答える
2

Brad Larsonの回答の迅速な拡張は次のとおりです。

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 では、上記の拡張機能が適切なオプションです。

于 2016-06-03T06:21:04.280 に答える
-3

以下はエラーなしで私を働かせました:

NSString *str = [[NSString alloc] initWithFormat:@"%@",  CFUUIDCreateString(nil, peripheral.UUID) ];
于 2013-07-16T08:27:47.920 に答える