मुझे यह त्रुटि मिली है, जब मैंने XCode 11 में नई परियोजना बनाई थी। मैंने उपयोग नहीं किया है SwiftUI
। यहाँ कदम हैं, मैंने इसे ठीक करने के लिए विचार किया है।
- से हटा दी गई
Application Scene Manifest
प्रविष्टिInfo.plist
- हटा दी गई
SceneDelegate.swift
फ़ाइल
AppDelegate.swift
कक्षा में दृश्य संबंधी सभी तरीकों को हटा दिया गया
- वर्ग
var window: UIWindow?
में संपत्ति जोड़ दीAppDelegate.swift
इन चरणों के बाद, मैं iOS 13 से पहले संस्करण पर ऐप चलाने में सक्षम हूं।
[संपादित करें]
अंत में, आपकी AppDelegate.swift
फ़ाइल को निम्न जैसा कुछ दिखना चाहिए।
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
return true
}
}