전체 글
-
[Xcode #2] 누수찾기 AES256DecryptWithKey카테고리 없음 2023. 7. 13. 11:15
누수란? 메모리가 해제되지않는것도 누수라고한다. 똑같은 시간을 비교해봣을때 메모리 증가가 여기는 1.6GiB 여기는 1.55GIB 조끔은 나아졋음을 확인했다. 이 부분의 문제점은 + (NSData *)AES256DecryptWithKey:(uint8_t *)key iv:(uint8_t *)iv data:(uint8_t *)data dataSize:(int)size { size_t bufferSize = size + kCCBlockSizeAES128; void *buffer = malloc(bufferSize); size_t decryptedSize = 0; CCCryptorStatus cryptStatus = CCCrypt(kCCDecrypt, kCCAlgorithmAES, // kCCOptionPKCS..
-
-
Xcode error - 'AudioSessionSetActive' is deprecated: first deprecated in iOS 7.0 - no longer supportedIOS/IOS Error 2023. 2. 23. 16:02
'AudioSessionSetActive' is deprecated: first deprecated in iOS 7.0 - no longer supported 다 뿌신다 진짜!!! 진짜... 이렇게 길어진다고...???? 실화야..? https://stackoverflow.com/questions/21682502/audiosessionsetproperty-deprecated-in-ios-7-0-so-how-set-kaudiosessionproperty-o 챗봇에 한번 물어보자........씨부레.. AVAudioSession *audioSession = [AVAudioSession sharedInstance]; NSError *error; BOOL success = [audioSession setActi..
-
xcode error - 'sizeWithFont:' is deprecated: first deprecated in iOS 7.0IOS/IOS Error 2023. 2. 23. 15:24
'sizeWithFont:' is deprecated: first deprecated in iOS 7.0 사용하지 않는대!!!! 아놔.. const CGSize titleSize = [menuItem.title sizeWithFont:titleFont]; 바꿔보자. 이걸로 바뀌었군.. CGRect rawRect = {}; rawRect.size = [menuItem.title sizeWithAttributes: @{ NSFontAttributeName: [UIFont systemFontOfSize:titleFont.pointSize], }]; const CGSize titleSize = CGRectIntegral(rawRect).size; 참고: https://stackoverflow.com/questi..
-
xcode error - 'openURL:' is deprecated: first deprecated in iOS 10.0카테고리 없음 2023. 2. 23. 15:10
'openURL:' is deprecated: first deprecated in iOS 10.0 오류를 해결해보겠다!!!!!!! 'openURL:' is deprecated: first deprecated in iOS 10.0 10이후 사용하지 않는 func 이라는 뜻....ㅎㅎ Fix로 변경 후 아래와 같이 변경하면 됨! [UIApplication.sharedApplication openURL:url options:@{} completionHandler:nil]; 참고 : https://stackoverflow.com/questions/39548010/openurl-deprecated-in-ios-10 openURL: deprecated in iOS 10 Apple with iOS 10 has dep..