更改現有標籤中的文字
可以通過訪問和修改 UILabel
的 text
屬性來更改現有 UILabel
的文字。這可以使用 String
文字直接完成或間接使用變數完成。
使用 String
文字設定文字
迅速
label.text = "the new text"
Objective-C
// Dot Notation
label.text = @"the new text";
// Message Pattern
[label setText:@"the new text"];
使用變數設定文字
迅速
let stringVar = "basic String var"
label.text = stringVar
Objective-C
NSString * stringVar = @"basic String var";
// Dot Notation
label.text = stringVar;
// Message Pattern
[label setText: stringVar];