ios 将 int 转换为 NSObject

发布于 2024-10-11 23:07:11 字数 116 浏览 2 评论 0原文

在我的函数中,我有一个 NSObject* 类型的参数,允许传递 NSString、NSDate 等......并内在地做一些事情...... 我还需要传递一个 int 类型的值.. 我该怎么做?

谢谢

in my function I have a parameter of NSObject* type, to allow to pass NSString, NSDate, etc.. and intenally do something...
I need to pass also a value of type int..
how can I do this?

thanks

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

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

发布评论

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

评论(2

寄与心 2024-10-18 23:07:11

@Itamar 的答案已经足够了,但我只是简化了它。

试试这个,

NSNumber *your_object = [NSNumber numberWithInt:int_value];

现在 int_value 被转换为对象。

@Itamar's answer is sufficient, but I'm just simplifying it.

Try this,

NSNumber *your_object = [NSNumber numberWithInt:int_value];

So now int_value is converted into object.

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