我无法让我的UITextField将我输入的数据存储到NSString变量中。它总是说它是零。我似乎无法弄清楚原因。我试过格式而没有格式。
NSString *payee, *date, *description, *amount, *tip, *total;
payee = [_payeeName.text copy];
date = _dateField.text;
description = _itemDescrip.text;
amount = _itemPrice.text;
tip = _tip.text;
total = _totalPrice.text;
[self dismissViewControllerAnimated:NO completion:nil];
我已尝试过副本而没有副本。