iPhone 中视图之间的数据共享

发布于 2024-12-21 10:16:48 字数 528 浏览 1 评论 0原文

我想共享数据,即从 SetupMatchViewControllerSetupTeamController 的一些 NSNumber

这是我的代码:

    NSNumberFormatter * f = [[NSNumberFormatter alloc] init];
    [f setNumberStyle:NSNumberFormatterDecimalStyle];

    team.turnsInt=[f numberFromString:turnButton.currentTitle ];
    team.perTurnInt=[f numberFromString:perTurnButton.currentTitle ];
    team.breakInt=[f numberFromString:breakButton.currentTitle ];

但我得到 0价值 。

我没有得到我想要的数据。

I want to share data ie some NSNumber from SetupMatchViewController to SetupTeamController

here is my code:

    NSNumberFormatter * f = [[NSNumberFormatter alloc] init];
    [f setNumberStyle:NSNumberFormatterDecimalStyle];

    team.turnsInt=[f numberFromString:turnButton.currentTitle ];
    team.perTurnInt=[f numberFromString:perTurnButton.currentTitle ];
    team.breakInt=[f numberFromString:breakButton.currentTitle ];

But I am getting 0 value .

I am not getting the data I want.

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

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

发布评论

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

评论(1

臻嫒无言 2024-12-28 10:16:48

如果 team.turnsInt 的类型是 int,那么你可以这样做:

team.turnsInt=[[f numberFromString:turnButton.currentTitle ] intValue];

if type of team.turnsInt is int, then you might do it with:

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