I Обнаружена утечка памяти при проверке с помощью инструментов в этой конкретной строке NSURL *constantURL = [[NSBundle mainBundle] appStoreReceiptURL];
эта строка используется для проверки квитанции Appstore
inline static NSData *GetConstantData(void)
{
NSURL *constantURL = [[NSBundle mainBundle] appStoreReceiptURL];
NSData *constantData = [NSData dataWithContentsOfURL:constantURL];
if (!constantData) {
[NSException raise:@"MacAppStore Constant Validation Error" format:@"Failed to fetch the MacAppStore constant.", nil];
}
return constantData;
}
Вот изображение с инструментов this
Есть предложения?