NSInteger 到 NSArray iPhone
我有 NSInteger 变量,例如 NSInteger example=1256,我需要一个包含该变量元素的数组。
so first element of array is array[0] = 1
array[1] = 2
array[2] = 5 etc..
我可以用什么方法解决它?
I have NSInteger variable, for example NSInteger example=1256 and i need an array with elements of this variable.
so first element of array is array[0] = 1
array[1] = 2
array[2] = 5 etc..
what way can i solve it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(3)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
以下是我的做法:
Here's about how I'd do it: