일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- Cannot install under Rosetta 2 in ARM default prefix (/opt/homebrew)!
- The image set has an unassigned child.
- 프로젝트기본설명
- 설명
- duplicate symbols for architecture arm 64
- The iOS deployment target
- FIRApp configure
- swift하고싶다.
- Xcode
- Unable to install
- Swfit
- 영어읽어라
- Deploument Info
- Project File List
- error
- objectiv-C
- HomeBrew #MAC
- ios
- 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0
- Swift
- 'AudioSessionSetActive' is deprecated: first deprecated in iOS 7.0 - no longer supported
- objectiveC
- 버전분기
- 의존성
- iOS개발
- git
- swift하고싶다
- 코드설게
- arch -arm64 brew install
- 'openURL:' is deprecated: first deprecated in iOS 10.0
- Today
- Total
목록IOS (30)
행복한 세상의 니노

iOS 개발에서 자주 마주치는 '의존성', '종속성', '프로토콜' 개념은 코드의 유지보수성과 테스트 편의성을 좌우하는 핵심입니다.의존성이 왜 생기는지, 종속성과의 차이는 뭔지, 그리고 왜 프로토콜이 중요한지를 실제 코딩 흐름과 함께 정리합니다.* 시작class ProfileViewModel { let api = APIService()}처음엔 그냥 이렇게 APIService를 직접 만들어 썼어요.그런데 테스트하려고 하다 보니 막혔어요.“가짜 API로 바꿔서 테스트하고 싶은데… 이걸 어떻게 바꾸지?”그때 처음 접한 개념이 의존성(Dependency) 이었어요.처음엔 단어 뜻부터 너무 어려웠고, 왜 바꿔야 하는지도 모르겠더라고요. * 의존성이란?어떤 객체가 다른 객체 없이는 동작할 수 없는 상태위 코..

Error: Cannot install under Rosetta 2 in ARM default prefix (/opt/homebrew)! 가 떳다면 ( 밑에 어떻게 하라고 나옴 ) 터미널에 arch -arm64 brew install tcping 복붙 하면 다운로드를 하는데 다운로드 완료하면 [test] tcping -t 1 www.daum.net 80 찾아보면 인텔에서 하는방법과 M1사용방법이 다르다!

'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..

'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..

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..

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..

[ 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..