如何將標籤文本更改爲文本字段文本? 此源代碼將標籤文本更改爲同一類中的文本字段文本,但我想更改不同類中的標籤。 標籤是在ViewController.swift和TextField處於ProfileViewController.swift如何使用swift在另一個視圖控制器中訪問一個視圖控制器的IBoutlet?
這是源代碼:
ViewController.swift
import UIKit
import Social
class ViewController: UIViewController, SideBarDelegate {
@IBOutlet weak var name: UILabel!
@IBOutlet weak var hedgeImage: UIImageView!
@IBOutlet weak var hideView: UIView!
var sideBar:SideBar = SideBar()
override func viewDidLoad() {
}
ProfileViewController.swift
class ProfileViewController: UIViewController {
@IBOutlet weak var ouput: UILabel!
@IBOutlet weak var name: UITextField!
@IBAction func nameChange(sender: AnyObject) {
ouput.text = name.text
}
}
感謝您的幫助我使用prepareforsegue函數解決了問題:) – Songshil