当我尝试存档我的应用程序的新版本时,我在xCode上收到错误,我无法确定它的来源以及如何解决它。
从xcode查看printscreen:Screenshot
答案 0 :(得分:5)
iOS 11改变了该方法的签名。
你可以试试这个
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000
extern int SecRandomCopyBytes(SecRandomRef rnd, size_t count, void *bytes) __attribute__((weak_import));
#else
extern int SecRandomCopyBytes(SecRandomRef rnd, size_t count, uint8_t *bytes) __attribute__((weak_import));
#endif