- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
NSDictionary
让我很困惑。它有点像我收集到的结构和数组的混合体。我正在阅读 iOS 编程书,它让我们将一个 JSON 对象放入 NSDictionary
中。对于返回键为“titles”的对象来说,一切都很好,但是对于 upcoming
类,upcoming
中有变量。在我看来,这就是 NSDictionary
的构建方式。
struct classes {
NSString *title;
struct upcoming[] {
NSString *end_date;
NSString *start_date;
NSString *instructor;
}
}
}
我一直在尝试通过以下变体在 for
循环中检索 start_date
:
NSLog(@"%@", [course objectForKey:@"upcoming.start_date"]);
我这样做的目的是将 title
的字符串附加到 upcoming
类及其 start_date
中。像...
NSString *value = course[@"title"];
if ([course objectForKey@"upcoming"] [value stringByAppendingString:
@" course[@"upcoming.start_date"];
NSLog(@"%@", value);
我如何做到这一点,如果 upcoming
有一个或多个值,那么它会通过附加显示的字符串来显示这些 start_date 值,否则它不会执行任何操作? 显然 upcoming.start_date
不是这样做的方法! start_date
本身没有指向相关 title
的链接。我需要将它们都链接起来以附加适当的字符串。
解决方案:
NSString *title = [course objectForKey:@"title"];
NSArray *upcomingCourses = [course objectForKey:@"upcoming"];
if (upcomingCourses.count > 0
NSString *showDate = [NSString stringWithFormat:@"%@. Next Class Date: %@"
title, [[upcomingCourses objectAtIndex:0] objectForKey:@"start_date"]];
NSLog(@"%@", showDate);
}
else NSLog(@"%@", title);
从 NSLog
发布 NSDictionary
:
courses = (
{
title = "Advanced iOS Bootcamp";
upcoming = (
{
"end_date" = "2014-04-04";
instructors = Blocksom;
location = "BNR West, California";
"start_date" = "2014-03-31";
},
{
"end_date" = "2014-05-16";
instructors = Dalrymple;
location = "BNR West, California";
"start_date" = "2014-05-12";
},
{
"end_date" = "2014-06-20";
instructors = Ward;
location = "Atlanta, Georgia";
"start_date" = "2014-06-16";
}
);
url = "https://training.bignerdranch.com/classes/advanced-ios-bootcamp";
},
{
title = "Beginning iOS (iPhone/iPad)";
upcoming = (
{
"end_date" = "2014-04-18";
instructors = Mathias;
location = "BNR West, California";
"start_date" = "2014-04-12";
},
{
"end_date" = "2014-05-02";
instructors = "Keur, Ward";
location = "Atlanta, Georgia";
"start_date" = "2014-04-26";
},
{
"end_date" = "2014-05-23";
instructors = Christopher;
location = "Atlanta, Georgia";
"start_date" = "2014-05-17";
},
{
"end_date" = "2014-06-06";
instructors = Christopher;
location = "BNR West, California";
"start_date" = "2014-05-31";
},
{
"end_date" = "2014-07-25";
instructors = Ritchie;
location = "BNR West, California";
"start_date" = "2014-07-19";
},
{
"end_date" = "2014-08-01";
instructors = "Usiyan, Keur";
location = "Atlanta, Georgia";
"start_date" = "2014-07-26";
},
{
"end_date" = "2014-09-19";
instructors = Ritchie;
location = "BNR West, California";
"start_date" = "2014-09-13";
}
);
url = "https://training.bignerdranch.com/classes/beginning-ios";
},
{
title = "Mobile Design Bootcamp";
upcoming = (
{
"end_date" = "2014-06-13";
instructors = "Harper, Porter";
location = "BNR West, California";
"start_date" = "2014-06-09";
}
);
url = "https://training.bignerdranch.com/classes/mobile-design-bootcamp";
},
{
title = "Python Programming";
upcoming = (
{
"end_date" = "2014-04-24";
instructors = Cassell;
location = "Atlanta, Georgia";
"start_date" = "2014-04-21";
},
{
"end_date" = "2014-06-19";
instructors = Cassell;
location = "BNR West, California";
"start_date" = "2014-06-16";
}
);
url = "https://training.bignerdranch.com/classes/python-programming";
},
{
title = "Beginning iOS Game Development";
upcoming = (
{
"end_date" = "2014-06-20";
instructors = Strougo;
location = "BNR West, California";
"start_date" = "2014-06-16";
},
{
"end_date" = "2014-09-26";
instructors = Strougo;
location = "BNR West, California";
"start_date" = "2014-09-22";
}
);
url = "https://training.bignerdranch.com/classes/beginning-ios-game-development";
},
{
title = "Android Bootcamp";
upcoming = (
{
"end_date" = "2014-05-16";
instructors = Phillips;
location = "Atlanta, Georgia";
"start_date" = "2014-05-12";
},
{
"end_date" = "2014-06-20";
instructors = Marsicano;
location = "Atlanta, Georgia";
"start_date" = "2014-06-16";
},
{
"end_date" = "2014-07-11";
instructors = Stewart;
location = "BNR West, California";
"start_date" = "2014-07-07";
},
{
"end_date" = "2014-10-03";
instructors = Phillips;
location = "BNR West, California";
"start_date" = "2014-09-29";
}
);
url = "https://training.bignerdranch.com/classes/android-bootcamp";
},
{
title = "HTML5 Apps with jQuery";
upcoming = (
{
"end_date" = "2014-05-16";
instructors = Aquino;
location = "Atlanta, Georgia";
"start_date" = "2014-05-12";
},
{
"end_date" = "2014-06-13";
instructors = Gandee;
location = "Atlanta, Georgia";
"start_date" = "2014-06-09";
},
{
"end_date" = "2014-08-01";
instructors = Aquino;
location = "BNR West, California";
"start_date" = "2014-07-28";
}
);
url = "https://training.bignerdranch.com/classes/html5-apps-with-jquery";
},
{
title = "Ruby on the Server";
upcoming = (
{
"end_date" = "2014-06-13";
instructors = Stewart;
location = "Atlanta, Georgia";
"start_date" = "2014-06-09";
}
);
url = "https://training.bignerdranch.com/classes/ruby-on-the-server";
},
{
title = "iOS Bootcamp - Fast Track";
upcoming = (
{
"end_date" = "2014-07-11";
instructors = Usiyan;
location = "Atlanta, Georgia";
"start_date" = "2014-07-07";
}
);
url = "https://training.bignerdranch.com/classes/ios-bootcamp-fast-track";
},
{
title = "Cocoa I Bootcamp";
upcoming = (
{
"end_date" = "2014-07-25";
instructors = Preble;
location = "Atlanta, Georgia";
"start_date" = "2014-07-21";
}
);
url = "https://training.bignerdranch.com/classes/cocoa-i-bootcamp";
},
{
title = "OpenGL ES Bootcamp";
upcoming = (
{
"end_date" = "2014-07-25";
instructors = Blocksom;
location = "Atlanta, Georgia";
"start_date" = "2014-07-21";
}
);
url = "https://training.bignerdranch.com/classes/opengl-es-bootcamp";
}
);
最佳答案
NSDictionary 允许您通过键检索对象。键只是另一个对象,但通常使用 NSString(限制是键必须是唯一的,值不需要是)。任何对象都可以存储在 key 下,因此在您的情况下,“即将到来”是一个 NSDictionaries 数组。所以你得到
dictionary {
title: someString
upcoming: array {
0: dictionary {
end_date: somestring
start_date: someString
instructor: someString
}
1: dictionary {
end_date: somestring
start_date: someString
instructor: someString
}
}
}
请注意,以上不是任何特定的语言或语法,只是数据“结构”的表示。
要检索类(class)详细信息,您可以像访问任何其他对象一样访问“即将到来的”对象并将其分配给变量。
假设 course
是你的根 NSDictionary
:
NSString *title=(NSString *)[course objectForKey:@"title"];
NSArray *upcomingCourses=(NSArray *)[course objectForKey:@"upcoming"];
NSMutableString *startDates=[[NSMutablestring alloc]init];
for (int i=0;i<[upcomingCourses count];i++)
{
NSDictionary *upcomingCourse = (NSDictionary *)[upcomingCourses objectAtIndex:i];
NSString *startDate = (NSString *)[upcomingCourse objectForKey:@"start_date"];
NSString *endDate = (NSString *)[upcomingCourse objectForKey:@"end_date"];
NSString *instructor = (NSString *)[upcomingCourse objectForKey:@"instructor"];
[startDates appendFormat:@"%@, ",startDate];
}
关于ios - 如何在成员之间保持链接的同时访问 NSDictionary 的另一个成员中的成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22750571/
test = (function(){var key = 200; return {getKey : function(){return key} }; })(); test.
如果这个问题可能一直被问到,我很抱歉,但我进行了搜索,但找不到足够的答案。 如果公共(public)成员/方法正在访问私有(private)成员/字段,如何禁用它们的继承? 所以考虑一下: publi
重要的澄清:一些评论者似乎认为我是从 union 复制的。仔细查看 memcpy,它从一个普通的旧 uint32_t 地址复制而来,该地址不包含在 union 中。另外,我正在(通过 memcpy)复
spinner 通常只显示一个字符串,在我想分配 IDpersonne 和 Name 的情况下,旋转器必须告诉我名字。当我得到选定的项目时,我必须得到 ID。我该怎么做? 最佳答案 我假设您已将项目排
A 类的实例是 B 类的公共(public)成员。B 类的实例也是 A 的公共(public)成员。在什么情况下可能需要这种实现?我的意思是是否有一个或多个标准场景需要这种实现方式?更具体的细节:我有
我如何设置我的 web.config 以使用表单例份验证,将成员身份提供程序设置为 ActiveDirectoryMembershipProvider 并使用内置登录控件。这样我就可以使用有效的事件目
这个问题已经有答案了: Should methods in a Java interface be declared with or without a public access modifier?
因此根据定义,类中的私有(private)数字在序列化时以类名作为前缀。这对我来说是一个问题,我希望能够序列化/保存/反序列化一个确切的对象,但是 php 所做的是给我另一个 classname+va
我实现了一个成员? clojure 中的函数如下: (defn member? [item seq] (cond (empty? seq) false (= item (first
我在这里的问题似乎总是与使用函数有关。它仍然让我困惑!在本教科书练习中,我被要求按值传递结构,然后调整它并按引用传递。最初我设计的代码是在 main 中完成所有工作。现在我正在传递值。所以我添加了新函
所以我有这些变量 List files, images = new List(); string rootStr; 还有这个线程函数 private static int[] thread_searc
我对 C++ 模板和尝试弄清楚部分模板特化还比较陌生。我正在使用模板实现几个相关的数据结构:用于概率存在/不存在查询的布隆过滤器(基于位数组),以及用于丰度查询的计数布隆过滤器(带有整数数组)。我从以
例如在 java 中,我在外部类和内部类中声明并初始化了一个 JButton,我决定在某些情况下将其隐藏,这是一种安全的编程实践吗? 最佳答案 内部类的全部目的是它们可以访问到环绕内部类的外部类。 所
我有一个使用库进行通信的类: class Topic { Topic( Type T, String name ); }; class Reader { Reader (Topic, Stri
我在两个单独的文件中有以下代码。 package animal; public class Frog { protected void ribbit() { Syste
我有一个分数列表。使用这些,我需要从 redis 排序集中提取值。 我知道我可以使用 zrangebyscore - 但如果我提供的列表中的分数不连续怎么办?在这种情况下,我不能依赖 zrangeby
过去几年我一直被 C# 编码宠坏了,现在我又回到了 C++ 并发现我在处理本应很简单的东西时遇到了麻烦。我正在为 gamedev 使用名为 DarkGDK 的第三方库(任何以 db 为前缀的命令),但
我正在关注 Brian Harvey 从 2011 年开始在 UC Berkeley site 上的 SICP 讲座。 .他正在使用 STk interpreter教这门课,我正在使用带有 DrRac
在这段代码中,为什么在运算符重载中无法访问我的类的私有(private)字段? (请注意,这只是一个 MRE,不是完整代码) template class Frac template Frac o
在命名命名空间类中,我将一个类(位于全局命名空间中)声明为友元。 但是,后一个类不能访问前一个类的私有(private)成员。为什么是这样?有什么办法可以解决吗? Bob.h namespace AB
我是一名优秀的程序员,十分优秀!