应用程序只是想让用户在文本字段中输入电话号码,然后当点击按钮时,它会调用该号码。什么是最好的代码?我已经在我的nib文件中创建了一个按钮和一个文本字段。
我正在使用Xcode 4。
答案 0 :(得分:2)
-(IBAction)numberButtonPressed:(UIButton *)pressedButton
{
self.phoneNumberLabel.text = [self.phoneNumberLabel.text stringByAppendingString: pressedButton.titleLabel.text];
}
你可以在这里看一下turorial:
http://mobile.tutsplus.com/tutorials/iphone/design-build-a-1980s-ios-phone-app-making-phone-calls/
答案 1 :(得分:0)
Here告诉您如何操作。只需将NSMutableString手机转到您的文本字段(使用yourTextField.text
)