IOS
-
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 - The image set has an unassigned child.IOS/IOS Error 2023. 2. 23. 15:01
The image set "btn_backward" has an unassigned child. https://stackoverflow.com/questions/38726545/image-set-has-an-unassigned-child image set has an unassigned child I've been working on an app in Xcode for a few months now. I came back to work on it after not having looked at it for a while and suddenly, I had 174 issues. All of my images on the storyboard were stackoverflow.com Btn_sound_on.p..
-
[error/iOS] The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.1.99.IOS/Objective-C 2023. 2. 13. 17:08
The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.1.99. 번역 : iOS 배포 대상 'IPHONEOS_DEPLOYMENT_TARGET'은 10.0으로 설정되어 있지만 지원되는 배포 대상 버전의 범위는 11.0~16.1.99입니다. ChatGPT This error message is indicating that the deployment target for your iOS app is set to 10.0, but the latest supported deployment target version is 1..
-
[ error ]Entitlements file "-------" was modified during the build, which is not supported. You can disable this error by setting 'CODE_SIGN_ALLOW_ENTITLEMENTS_MODIFICATION' to 'YES', however this may cause the built product's code signature or provisio..IOS 2023. 1. 12. 10:04
[ Xcode error ] Entitlements file "-------" was modified during the build, which is not supported. You can disable this error by setting 'CODE_SIGN_ALLOW_ENTITLEMENTS_MODIFICATION' to 'YES', however this may cause the built product's code signature or provisioning profile to contain incorrect entitlements. [ 해결방법 ] Product -> Clean Build Folder https://stackoverflow.com/questions/55456335/entitl..
-
duplicate symbols for architecture arm 64IOS/IOS Error 2022. 10. 25. 16:15
나는 SDK 객체를 여러 페이지에 써야하는데.. 거기서 에러가 발생했다.. 이뜻이.. 뭐냐면.. 공통된게 4개나 있는데 공통되서 쓸 수 없다. 이 뜻이다. 그래서 공통 되도 괜찮아~ 를 세팅해줘야한다. 아래의 화면이 그거다! [ under Targets->Build Settings->Apple LLVM - Code Generation ] 여기서 찾을 수 있다. Code Generation 을 No로 세팅할것!!!!!! 후.......... 잊지말자..