我知道这应该很简单,但我无法从文本输入中获取字符串以保存到核心数据。我的字符串保存为null。我的代码是
NSString *courseName = [[NSString alloc] initWithFormat:@"%@", _courseNameValue.text];
然后使用
保存到核心数据[newRound setValue:courseName forKey:@"roundCourseName"];
有人可以帮我这个吗?
答案 0 :(得分:1)
更新:解决了我的问题。我有一个奇怪的情况,输入字段确实格式化为标签。更改为文本输入,连接插座,现在已修复。解释为什么我无法解决代码问题。谢谢你的帮助。
答案 1 :(得分:0)
需要更多代码,但请尝试以下代码:
@synthesize courseNameValue;
NSString *f = [NSString stringWithFormat:@"%@", courseNameValue.text];
[newRound setValue:courseName forKey:@"roundCourseName"];
ps检查courseNameValue