0
我有一個問題。我製作了一個簡單的文字和按鈕應用程序。當我觸摸按鈕並告訴它更改標籤中的文本時,文本會重疊。UILabel在xcode 6中重疊文字
我做了一個簡單的應用程序,在UILabel
中顯示「hello Phylicia」,當按下按鈕時,它應該變成「你好嗎」。我如何讓文字改變?
我在這裏使用此設置:
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var funFactLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func showFunFact() {
funFactLabel.text = "How are you"
}
}
您的代碼看起來正確。你是什麼意思,「標籤中的文字與文本重疊」?你可以在行動中發佈問題的截圖,也許你的故事板看起來像什麼? – 2014-11-02 18:07:40