0

我知道这应该很容易,但我无法从文本输入中获取字符串以保存到核心数据。我的字符串保存为空。我的代码是

NSString *courseName = [[NSString alloc] initWithFormat:@"%@", _courseNameValue.text];

然后保存到核心数据

[newRound setValue:courseName forKey:@"roundCourseName"];

有人可以帮我弄这个吗?

4

2 回答 2

1

更新:解决了我的问题。我有一个奇怪的情况,输入字段真的被格式化为标签。改为文本输入,连接插座,现在已修复。解释了为什么我无法用代码解决问题。谢谢你的帮助。

于 2013-08-21T11:50:44.260 回答
0

需要更多代码,但试试这个代码:

@synthesize courseNameValue;
NSString *f = [NSString stringWithFormat:@"%@", courseNameValue.text];
[newRound setValue:courseName forKey:@"roundCourseName"];

ps 检查 courseNameValue

于 2013-08-21T05:21:00.677 回答