显示数组时的 iphone NSLog
首先,当我使用 nslog 记录数组的内容时,为什么数组中的某些对象(所有字符串)带有引号,而有些则没有?
日志将如下所示:
"Item 1",
"item 2",
item3,
"item4"
这导致了问题的第二部分...
有问题的数组被用作 tableView 的数据源,并且只有表视图中显示的唯一对象是不带引号的对象标记。
First when I am using nslog to log the contents of an array, why is it that some of the objects in the array (all strings) have quotation marks around them and some dont?
The log will look like:
"Item 1",
"item 2",
item3,
"item4"
This leads to my second part of the question...
The array in question is being used as a dataSource for a tableView, and only the only object that is showing up in the table view is the one without quotation marks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Item3 不包含空格,因此不需要引号。
Item3 doesn't contain a space and therefore doesn't require quotes.