iOS/Xcode 6

dyld[46471]: Library not loaded: @rpath/libXCTestSwiftSupport.dylib Referenced from:

dyld[46471]: Library not loaded: @rpath/libXCTestSwiftSupport.dylib Referenced from: /Users/isangnam/Library/Developer/Xcode/DerivedData/SCloset-bgejcwkdqhelarambdyzqvxxtzsi/Build/Products/Debug-iphonesimulator/PackageFrameworks/RxTest.framework/RxTest RxTest와 RxBlocking은 내 앱 타겟에 바로 작성하지 않고 테스트 타겟에 작성해야한다. 그래서 우선 테스트 타겟부터 생성해야한다. 우선 사용하지 않기때문에 삭제한다. 참고 https://velog.io/@sun02/dyld-Library-not-lo..

iOS/Xcode 2023.11.15

CodeBaseUI) Xcode 프로젝트 Main.storyBoard 삭제

1. Main.stroyBoard 삭제 2. info.plist 수정 info.plist StoryboardName 삭제 3. Project TARGETS 수정 Project TARGETS -> Build Settings -> Main 검색 -> UIKit MAin Storyboard File Base Name 삭제 4. SceneDelegate 수정 첫 화면 으로 띄울 뷰컨트롤러를 생성합니다. class SceneDelegate: UIResponder, UIWindowSceneDelegate { var window: UIWindow? func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: ..

iOS/Xcode 2023.11.15

Xcode 단축키

⌥(option) ⇧(Shift) ⌘(command) ⌃(control) 1. 기본적인 단축키 ⌥(option)+ ⇧(Shift) + ←(→) : 단어 단위 블럭 ⌘(command) + ⇧(Shift) + ←(→) : 시작점부터 끝까지 블럭 ⌘(command) + A : 전체 선택 ⌘(command) + Z : 되돌리기 ⌘(command) + ⇧(Shift) + Z : 앞으로 되돌리기 ⌘(command) + X : 자르기 ⌘(command) + C : 복사 ⌘(command) + V : 붙여넣기 ⌘(command) + ⌫ : 해당 라인 지우기 ⌘(command) + ←(→, ↑, ↓) : 해당 방향의 끝으로 이동 ⌘(command) + W : 현재 창 닫기 2. Xcode 단축키 2-1. 네비게이션 ⌘(..

iOS/Xcode 2023.05.08

Xcode 시뮬레이터 에러, 초기화(This app could not be installed at this time.)

This app could not be installed at this time. 시뮬레이터 실행을 하면 빌드는 되는데 앱 실행이 안된다. 1. 시뮬레이터 초기화 시뮬레이터 메뉴 Device > Erase All Content and Settings (시뮬레이터 초기화를 실행한다.) Erase 를 클릭하면 초기화가 진행된다. 2. 프로젝트 clean Xcode 메뉴 Product > Clean Build Folder (프로젝트 Clean) shift+cmd+k (프로젝트 Clean) shift+opt+cmd+K (프로젝트 폴더 Clean)

iOS/Xcode 2021.11.15