How convert devicetoken (NSString) into NSData

來源:互聯網
上載者:User

標籤:io   for   問題   ar   amp   size   log   c   

deviceToken是個nsdata (nslog like this:<35b79913 2f94bf8d 3f7a863f 398410ca d6c61428 bae03de4 bf86b656 1b1042bf>
)
我把它轉化為nsstring(35b79913 2f94bf8d 3f7a863f 398410ca d6c61428 bae03de4 bf86b656 1b1042bf)後怎麼再轉換為nsdata(要nslog 依然是:<35b79913 2f94bf8d 3f7a863f 398410ca d6c61428 bae03de4 bf86b656 1b1042bf>)


後面在老外的提醒下才想起來列印的那些字元對應的是十六進位字串,不是bytes。糊塗了。。。所以問題就轉化為了16進位字串轉化為nsdata的問題

-(NSData *) dataFromHexString:(NSString *) hexstr{    NSMutableData *data = [[NSMutableData alloc] init];    NSString *inputStr = [hexstr uppercaseString];    NSString *hexChars = @"0123456789ABCDEF";    Byte b1,b2;    b1 = 255;    b2 = 255;    for (int i=0; i<hexstr.length; i++) {        NSString *subStr = [inputStr substringWithRange:NSMakeRange(i, 1)];        NSRange loc = [hexChars rangeOfString:subStr];        if (loc.location == NSNotFound) continue;        if (255 == b1) {            b1 = (Byte)loc.location;        }else {            b2 = (Byte)loc.location;            //Appending the Byte to NSData            Byte *bytes = malloc(sizeof(Byte) *1);            bytes[0] = ((b1<<4) & 0xf0) | (b2 & 0x0f);            [data appendBytes:bytes length:1];            b1 = b2 = 255;        }    }    return data;}


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.