英文:
NSUnknownKeyException when connecting property IB
问题
I am trying to integrate a UIKit view into my SwiftUI project using UIViewRepresentable
as an intermediate.
A TestViewVC.swift
file was created containing just a simple IBOutlet:
import Foundation
import UIKit
class TestViewVC: UIViewController {
@IBOutlet weak var testLabel: UILabel!
}
A corresponding TestViewVC.xib
file was creating containing just a single label centered on screen which was then connected to the testLabel IBOutlet. The TestViewVC was assigned as the File Owner's class.
These are then displayed within the SwiftUI context through the use of a TestRepresentableView.swift and TestViewVC.swift class (shown below).
// TestRepresentableView.swift
import SwiftUI
struct TestRepresentableView: UIViewRepresentable {
func makeUIView(context: Context) -> UIView {
// Load the XIB file and return its view
let nib = UINib(nibName: "TestViewVC", bundle: nil)
return nib.instantiate(withOwner: nil, options: nil)[0] as! UIView
}
func updateUIView(_ uiView: UIView, context: Context) {
// Update the view here if needed
}
}
// TestViewVC.swift
import SwiftUI
@main
struct TestApp: App {
var body: some Scene {
WindowGroup {
TestRepresentableView()
}
}
}
The app runs fine on debug; however, an NSUnknownKeyException
is raised whenever the label is connected to the IBOutlet (or any other outlet, even simply connecting the view results in the same error).
Any idea why this is happening?
英文:
I am trying to integrate a UIKit view into my SwiftUI project using UIViewRepresentable
as an intermediate.
A TestViewVC.swift
file was created containing just a simple IBOutlet:
import Foundation
import UIKit
class TestViewVC: UIViewController {
@IBOutlet weak var testLabel: UILabel!
}
A corresponding TestViewVC.xib
file was creating containing just a single label centred on screen which was then connected to the testLabel IBOoutlet. The TestViewVC wasassigned as the File Owner's class.
These are then displayed within the SwiftUI context through the use of a TestRepresentableView.swift and TestViewVC.swift class (shown below).
//TestRepresentableView.swift
import SwiftUI
struct TestRepresentableView: UIViewRepresentable {
func makeUIView(context: Context) -> UIView {
// Load the XIB file and return its view
let nib = UINib(nibName: "TestViewVC", bundle: nil)
return nib.instantiate(withOwner: nil, options: nil)[0] as! UIView
}
func updateUIView(_ uiView: UIView, context: Context) {
// Update the view here if needed
}
}
//TestViewVC.swift
import SwiftUI
@main
struct TestApp: App {
var body: some Scene {
WindowGroup {
TestRepresentableView()
}
}
}
The app runs fine on debug however an NSUnknownKeyException
is raised whenever label is connected to the IBOutlet. (Or any other outlet for that matter, even simply connecting the view results in the same error).
Any idea of which this is happening?
答案1
得分: 0
如Geoff所指出,应该使用UIViewControllerRepresentable
来代替UIViewRepresentable
,以封装视图和视图控制器,包括任何需要的附加属性和行为。
更新后的代码如下:
import SwiftUI
struct TestRepresentableVC: UIViewControllerRepresentable {
func makeUIViewController(context: Context) -> TestViewVC {
let viewController = TestViewVC(nibName: "TestViewVC", bundle: nil)
return viewController
}
func updateUIViewController(_ uiViewController: TestViewVC, context: Context) {
// 如果需要,可以在这里更新视图控制器
}
}
英文:
As Geoff pointed out, a UIViewControllerRepresentable
should be used instead of UIViewRepresentable
to encapsulate both the view and the view controller, including any additional properties and behaviors that are needed.
Updated code below:
import SwiftUI
struct TestRepresentableVC: UIViewControllerRepresentable {
func makeUIViewController(context: Context) -> TestViewVC {
let viewController = TestViewVC(nibName: "TestViewVC", bundle: nil)
return viewController
}
func updateUIViewController(_ uiViewController: TestViewVC, context: Context) {
// update the view controller here if needed
}
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论