recherche

Maison  >  Questions et réponses  >  le corps du texte

objective-c - iOS Nsdata (hexadécimal stocké dedans) converti en décimal

L'en-tête NSdata stocke la longueur de l'image, ru : <00000000 000768f3 >, c'est un nombre hexadécimal, comment le convertir en décimal

PHP中文网PHP中文网2806 Il y a quelques jours697

répondre à tous(1)je répondrai

  • PHP中文网

    PHP中文网2017-05-02 09:33:46

    uint64_t length = 0;
    [data getBytes:&length length:8];
    length = CFSwapInt64HostToBig(length);

    répondre
    0
  • Annulerrépondre