2021년 11월 11일 목요일

Xcode 13.1에서 iOS 10.3 App 생성시 'UIScene' is only available in iOS 13.0 or newer 에러 대처

 모처럼만에 XCode에 iPAD2 를 연결하여 빈화면을 생성하여 실행하려 하였더니.

'UIScene' is only available in iOS 13.0 or newer

가 발생되어 당황하였습니다. 검색결과.. 

SceneDelegate.swift 에서


@available(iOS 13.0, *) // (1)이것을 추가

class SceneDelegate: UIResponder, UIWindowSceneDelegate {



AppDelegate.swift 에서


class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow? // (2)이것을 추가


@available(iOS 13.0, *) // (3)이것을 추가

    func application(_ application: UIApplication, configurationForConnecting 


@available(iOS 13.0, *) // (4)이것을 추가

    func application(_ application: UIApplication,


해주면 되는군요.





댓글 없음:

tensorflow gpu 사용하기에서

 tensorflow 설치시 주의해야 한다. # Anything above 2.10 is not supported on the GPU on Windows Native python - m pip install "tensorflow<2.11...