목록Xcode (4)
NewGen
Object-c 에서 include 시키는 Framework의 헤더파일을 include 할때, 기존에는 , Header Search Path에 헤더파일 경로를 설정해 주었는데, xCode 12에서는 먹히지 않아 이것저것 찾아봄. 결국 , System Header Search Path 요기에다 경로를 설정해주어야 먹힘.
1. connect iphone to Mac via USB. 2. run Xcode 3. Select Window -> Devide and Simulators. 4. Check "Conect via network" 5. unplug usb cable and restart Xcode. 6. Select Window -> Devide and Simulators. and find your iphone and right click on yours. 7. select "connect via IP Address" 8. enter your iphone ip address. 9. Run and debugging on Xcode. It will download via wifi and can do debugging.
Xcode 버전에 따른, AppDelegate.swift @main annotation 처리. 최신 버전(현재: Version 12.3 (12C33)) 에서는 AppDelegate.swift에서 main 시작점 부분 표시가. //@main class AppDelegate: UIResponder, UIApplicationDelegate { } 이렇게 되어 있슴. 이렇게 최신버전의 Xcode 에서 작성된 소스를 구형 버전의 Xcode(11.5 에서 에러 발생.) 에서 에러가 발생함. @main
xcode version : Version 10.2.1 swift. 1. Change Launch Image Source on Project general setup. 2. Select LaunchScreen.storyboard. 3. Add image to Assets.xcassets. 4. Add Image to LaunchScreen View controller 5. set splash image show time --> add : Thread.sleep(forTimeInterval: 3.0) //3 secs splash delay func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [U..