未接收新值的字符串始终为 (null)

发布于 2024-10-04 13:27:33 字数 779 浏览 3 评论 0原文

这里正在发生奇怪的事情。

NSString *string = [powerPickerVC.powerList objectAtIndex:selRow];
NSLog(@"powerPicker row = %@", string); //this returns me the string from powerList
repVC.selectedPower = string; //selectedPower doesn't receive the new value and returns (null)
NSLog(@"selectedPower = %@", repVC.selectedPower);

而且repVC.selectedPower总是返回(null)

就在那段代码之前,我有这样的:

selectedRowPower = [powerPickerVC.powerPicker selectedRowInComponent:0];
repVC.selectedRowInObjectPicker = selectedRowPower;
NSLog(@"selectedRowInObjectPicker = %d", selectedRowPower);

而且效果很好。 selectedRowInObjectPicker 是一个 NSInteger,但如果我能够设置它的值,为什么我无法设置 selectedPower 的值?

是的,物体被合成了,一切......

Weird thing is happening here.

NSString *string = [powerPickerVC.powerList objectAtIndex:selRow];
NSLog(@"powerPicker row = %@", string); //this returns me the string from powerList
repVC.selectedPower = string; //selectedPower doesn't receive the new value and returns (null)
NSLog(@"selectedPower = %@", repVC.selectedPower);

And repVC.selectedPower is always returning (null)!

Just before that piece of code, I have this:

selectedRowPower = [powerPickerVC.powerPicker selectedRowInComponent:0];
repVC.selectedRowInObjectPicker = selectedRowPower;
NSLog(@"selectedRowInObjectPicker = %d", selectedRowPower);

And that works perfectly. selectedRowInObjectPicker is an NSInteger but if I'm able to set its value, why am I not being able to set selectedPower's value?

Yes, the object is synthesized and everything...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

烈酒灼喉 2024-10-11 13:27:33

repVC 很有可能是 nil。尝试在那里添加断点看看。

High chance that repVC is nil. Try to add breakpoint there and see.

戴着白色围巾的女孩 2024-10-11 13:27:33

您是否定义了一个名为 -setSelectedPower: 的方法?

Have you defined a method called -setSelectedPower: by any chance?

神经暖 2024-10-11 13:27:33

使用 [NSString stringWithString: ] 初始化字符串。

在你的情况下,

repVC.selectedPower = [[NSString stringWithString:string];

并确保接收者是按预期正确声明的 NSString。

Use the [NSString stringWithString: ] to initialize strings.

In your case,

repVC.selectedPower = [[NSString stringWithString:string];

And ensure the receiver is a properly declared NSString as intended.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文