일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 'openURL:' is deprecated: first deprecated in iOS 10.0
- 프로젝트기본설명
- 설명
- HomeBrew #MAC
- Project File List
- Cannot install under Rosetta 2 in ARM default prefix (/opt/homebrew)!
- Swift
- The image set has an unassigned child.
- 코드설게
- swift하고싶다
- 의존성
- Swfit
- ios
- 영어읽어라
- objectiv-C
- Xcode
- Unable to install
- iOS개발
- duplicate symbols for architecture arm 64
- Deploument Info
- 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0
- FIRApp configure
- objectiveC
- swift하고싶다.
- 버전분기
- error
- git
- arch -arm64 brew install
- 'AudioSessionSetActive' is deprecated: first deprecated in iOS 7.0 - no longer supported
- The iOS deployment target
- Today
- Total
목록분류 전체보기 (68)
행복한 세상의 니노

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

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

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..
https://m.blog.naver.com/PostView.naver?blogId=idismancs&logNo=221289365569&navType=by 피쉬아이 (Fish Eye) 180°의 화각을 가지는 렌즈로, 물고기 눈처럼 보여 피쉬아이(Fish Eye) 렌즈라고 부르기도 합니다. ... blog.naver.com CCTV는 "Closed Circuit Television"의 약어로, 비디오 카메라와 모니터 등을 사용하여 화면을 감시하고 기록하는 시스템입니다. 아래는 CCTV 용어집입니다. 카메라 (Camera): 영상을 촬영하는 장치 DVR (Digital Video Recorder): 카메라에서 전송된 영상을 디지털 형태로 기록하는 장치 NVR (Network Video Recorder): ..

버전 업데이트 ( 10 -> 11 ) 로 업데이트하면서..하하하... 10이였을때 경고가 3개였는데.. 11로 올리니까 157개에 경고가 떴닼ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ 그래서 하나씩 고쳐보고자 한다. 해당부분은 .. Build버전과 app setting 버전이 달라서 생기는 문제이당.! http://theeye.pe.kr/archives/2475 iOS CFBundleVersion와 CFBundleShortVersionString에 대한 이해 | 아이군의 블로그 CFBundleVersion와 CFBundleShortVersionString의 차이점 XCode에서 보면 위와 같이 버전 정보를 설정하는 부분을 볼 수 있습니다. 하나는 Version이고 다른 하나는 Build입니다. 이 버전 정보들을 Info.pli..

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