iosエンジニアリングパッケージipaでarchive failed(CC_MD 5による)を提示

1120 ワード

パッケージの失敗には多くの原因がありますが、私のこのプロジェクトには間違いのヒントがなく、手がつけられません.バックアップがあるので、バックアップはパッケージ化できます.
最も愚かな方法で、新しいファイルを古いプロジェクトに上書きし、ついに問題をmd 5関数にロックしました.
+(NSString *)md5:(NSString *)str {
    const char *cStr = [str UTF8String];// utf-8
    unsigned char result[16];// 16 (128 :md5 128 /bit) ( =8 =8 )
    CC_MD5( cStr, strlen(cStr), result);
    /*
     extern unsigned char *CC_MD5(const void *data, CC_LONG len, unsigned char *md) 
      cStr 32 16 ( )  result 
     */
    return [NSString stringWithFormat:
            @"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
            result[0], result[1], result[2], result[3],
            result[4], result[5], result[6], result[7],
            result[8], result[9], result[10], result[11],
            result[12], result[13], result[14], result[15]
            ];
    /*
     x ,%02X   0 , 
     NSLog("%02X", 0x888);  //888
     NSLog("%02X", 0x4); //04
     */
}

//ガイドがない場合は、以下のように提示します.
Implicit declaration of function 'CC_MD5' is invalid in C99
//これをインポートすればいい、ipaの生成に成功
#import