如何获取文本字段的值并将其输出为字符串?

时间:2011-12-21 01:43:32

标签: objective-c

以下是代码:

-(IBAction)customButtonPressed:(id)sender
{
    NSString *text = Field.text;
    //label is called Label
}

如何获取UITextField(Field)的值并将其设置为标签?

2 个答案:

答案 0 :(得分:1)

如果按值表示UITextField的文字,则可以使用setText标记文字:

[Label setText: text]

答案 1 :(得分:0)

试试这个: [Label setText:[Field text]]