将 NSString 添加到可变数组
我创建了一个可变数组,并且有两个 NSString 变量。现在我想将这两个 NSString 添加到我的数组中。这怎么可能?谢谢。
I created a mutable array and I have two NSString
variables. Now I want to add these two NSString
s to my array. How is this possible? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
NSMutableArray
的addObject
函数。例如。
Use the
addObject
function of youNSMutableArray
.eg.
贾利亚的回答是正确的。 +1 票。
我添加了一个不可变的版本,以便您可以看到差异。如果您不想向容器中删除或添加更多对象(NSString),我建议使用不可变版本。
可变版本:
不可变版本
Jhaliya's answer is correct. +1 vote.
I added a immutable version so you can see the difference. If you dont want to remove or add more objects (NSStrings) to your container, I would recommend using an Immutable version.
Mutable version:
Immutable version
您可以在
NSMutableArray
分配中添加。喜欢 :
You can add at
NSMutableArray
allocation.Like :