gpt4 book ai didi

ios - UITextView 总是返回 nil

转载 作者:行者123 更新时间:2023-11-28 09:20:06 24 4
gpt4 key购买 nike

我正在尝试在 UITextView IBOutlet 变量上编写自定义文本。但是,由于某种原因,编译器说该值为 nil ?我检查了 socket 连接。我觉得他们很好。我错过了别的东西。谁能帮我解决这个问题?

import Foundation
import UIKit

class CellClickController: UIViewController{
@IBOutlet var name: UITextView!

//var urgentCenter: UrgentCenterDetails = UrgentCenterDetails()

func viewDidLoad(index: Int) {
super.viewDidLoad()

//println("index: \(index)")
if name == nil{
println("I am nil")
}
else{
name.text = "Hello"
}
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

}

最佳答案

试试这个,

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
if name == nil{
println("I am nil")
}
else{
name.text = "Hello"
}
}

在您的代码中,viewDidLoad 方法的语法是错误的,因此 func viewDidLoad 不起作用。

关于ios - UITextView 总是返回 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25497736/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com