在我的主视图中,我有两个容器,它们在视图控制器中有一个IBOutlet。
在两个容器中,我都有一个图像和一个标签,如下图所示。
我希望有一个IBOutlet来更改图像和标签,但是当我将它拖动到原始视图控制器时,它不允许它。
所以在viewcontroller.swift中我说我可以通过点击和拖动来访问每个容器。喜欢这个
@IBOutlet weak var containerview1: UIView!
@IBOutlet weak var containerview2: UIView!
但我试图访问容器中的图像视图和标签,如下所示:
@IBOutlet weak var containerview1: UIView!
@IBOutlet weak var containerview2: UIView!
@IBOutlet weak containerview1_ImageView: UIImageView!
@IBOutlet weak containerview2_ImageView!: UIImageView!
我知道这可能不是正确的方法。我需要能够通过viewcontroller.swift以编程方式更改两个containerviews中的图像和标签。
感谢您的帮助
答案 0 :(得分:1)
为容器创建两个单独的类
import UIKit
class ContainerView1: UIView {
@IBOutlet var containerView1Label: UILabel!
@IBOutlet var containerView1ImageView: UIImageView!
}
import UIKit
class ContainerView2: UIView {
@IBOutlet var containerView2Label: UILabel!
@IBOutlet var containerView2ImageView: UIImageView!
}
在主viewController故事板中定义那些类
现在通过从故事板
拖动来设置标签和imageview插座现在在主视图控制器中拖动容器插座并使用
import UIKit
class ViewController: UIViewController {
@IBOutlet var containerView1: ContainerView1!
@IBOutlet var containerView2: ContainerView2!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
// use like this both container elements
containerView1.containerView1Label.text = "Container view 1 lable"
//containerView1.containerView1ImageView.image = yourImage file
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}