forked from insidegui/WWDC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsessions.json
8284 lines (8284 loc) · 299 KB
/
sessions.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"response": {
"ack": true,
"rooms": [
{
"name": "Bill Graham Civic Auditorium",
"mapName": "BGCA",
"floor": "billGraham"
},
{
"name": "Presidio",
"mapName": "Session-Presidio",
"floor": "floor3"
},
{
"name": "Mission",
"mapName": "Session-Mission",
"floor": "floor2"
},
{
"name": "Pacific Heights",
"mapName": "Session-PacHeights",
"floor": "floor2"
},
{
"name": "Nob Hill",
"mapName": "Session-NobHill",
"floor": "floor2"
},
{
"name": "Frameworks Lab A",
"mapName": "Lab-Frameworks",
"floor": "floor1"
},
{
"name": "Frameworks Lab B",
"mapName": "Lab-Frameworks",
"floor": "floor1"
},
{
"name": "Frameworks Lab C",
"mapName": "Lab-Frameworks",
"floor": "floor1"
},
{
"name": "Frameworks Lab D",
"mapName": "Lab-Frameworks",
"floor": "floor1"
},
{
"name": "Graphics, Games, and Media Lab A",
"mapName": "Lab-GraphicsAndMedia",
"floor": "floor1"
},
{
"name": "Graphics, Games, and Media Lab B",
"mapName": "Lab-GraphicsAndMedia",
"floor": "floor1"
},
{
"name": "Graphics, Games, and Media Lab C",
"mapName": "Lab-GraphicsAndMedia",
"floor": "floor1"
},
{
"name": "Graphics, Games, and Media Lab D",
"mapName": "Lab-GraphicsAndMedia",
"floor": "floor1"
},
{
"name": "Developer Tools Lab A",
"mapName": "Lab-Tools",
"floor": "floor1"
},
{
"name": "Developer Tools Lab B",
"mapName": "Lab-Tools",
"floor": "floor1"
},
{
"name": "Developer Tools Lab C",
"mapName": "Lab-Tools",
"floor": "floor1"
},
{
"name": "User Interface Design Lab A",
"mapName": "Lab-UIDesign",
"floor": "floor3"
},
{
"name": "User Interface Design Lab B",
"mapName": "Lab-UIDesign",
"floor": "floor3"
},
{
"name": "Fort Mason",
"mapName": "Lounge-FtMason",
"floor": "floor1"
},
{
"name": "Buena Vista Park",
"mapName": "Lounge-BuenaVistaPark",
"floor": "floor1"
},
{
"name": "Dolores Park",
"mapName": "Lounge-DoloresPark",
"floor": "floor1"
},
{
"name": "App Store Lab A",
"mapName": "Lab-AppStore",
"floor": "floor3"
},
{
"name": "App Store Lab B",
"mapName": "Lab-AppStore",
"floor": "floor3"
},
{
"name": "App Store Lab C",
"mapName": "Lab-AppStore",
"floor": "floor3"
},
{
"name": "App Store Lab D",
"mapName": "Lab-AppStore",
"floor": "floor3"
},
{
"name": "App Store Lab E",
"mapName": "Lab-AppStore",
"floor": "floor3"
},
{
"name": "App Store Lab F",
"mapName": "Lab-AppStore",
"floor": "floor3"
},
{
"name": "Scholarship Lounge",
"mapName": "Lounge-Scholarship",
"floor": "floor3"
},
{
"name": "Recharge Lounge",
"mapName": "Lounge-Recharge",
"floor": "floor3"
}
],
"tracks": [
{
"name": "Featured",
"color": "#9E9E9E",
"darkColor": "#32353D",
"titleColor": "#D9D9DD",
"lightBGColor": "#32353D"
},
{
"name": "Media",
"color": "#DC5A5A",
"darkColor": "#432B34",
"titleColor": "#FFA5AB",
"lightBGColor": "#432B34"
},
{
"name": "Developer Tools",
"color": "#E59053",
"darkColor": "#43342E",
"titleColor": "#FFD78D",
"lightBGColor": "#43342E"
},
{
"name": "Graphics and Games",
"color": "#D9BE53",
"darkColor": "#433F2F",
"titleColor": "#FFFF90",
"lightBGColor": "#433F2F"
},
{
"name": "System Frameworks",
"color": "#59A855",
"darkColor": "#2D3C39",
"titleColor": "#BDFDC9",
"lightBGColor": "#2D3C39"
},
{
"name": "App Frameworks",
"color": "#27A79B",
"darkColor": "#263D44",
"titleColor": "#98FFFF",
"lightBGColor": "#263D44"
},
{
"name": "Design",
"color": "#528FCC",
"darkColor": "#25394C",
"titleColor": "#95EDFF",
"lightBGColor": "#25394C"
},
{
"name": "Distribution",
"color": "#B0619E",
"darkColor": "#373049",
"titleColor": "#F5BEFF",
"lightBGColor": "#373049"
}
],
"sessions": [
{
"id": "5080",
"title": "This is not under contingency anymore",
"track": "Media",
"type": "Lab",
"room": "Graphics, Games, and Media Lab C",
"focus": [
"iOS",
"macOS",
"tvOS"
],
"keywords": [
"audio",
"editing",
"export",
"hls",
"http live streaming",
"imaging",
"media",
"playback",
"recording",
"video"
],
"description": "AVFoundation is a powerful framework for all types of media operations, including capture, editing, playback, and export. Built on AVFoundation, AVKit offers a fully featured and intuitive user interface for interaction with media in apps. Get one-on-one technical guidance from Apple engineers about using AVFoundation and AVKit in your apps. Bring your code and your questions.",
"startGMT": "2017-06-15T13:00:00-07:00",
"endGMT": "2017-06-15T16:00:00-07:00",
"start_time": 1466020800,
"end_time": 1466031600,
"fav_id": "wwdc17-5080"
},
{
"id": "7270",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Lab",
"room": "Frameworks Lab C",
"focus": [
"iOS",
"macOS",
"tvOS",
"watchOS"
],
"keywords": [
"approval",
"authorization",
"beacon",
"clvisit",
"corelocation",
"core location",
"fence",
"fencing",
"floor",
"geofence",
"geo-fence",
"geo-fencing",
"gps",
"heading",
"ibeacons",
"ibeaocn",
"indoor",
"indoor positioning",
"journal",
"journaling",
"ranging",
"region",
"region monitoring",
"regions",
"significant location change",
"slc",
"triangulation",
"trilateration",
"visit",
"visit monitor",
"visit monitoring",
"wheninuse",
"whileinuse"
],
"description": "Talk with the Core Location engineers to understand the best way to use Core Location in your App. Bring your MacBook, your questions, and your code.",
"startGMT": "2017-06-17T12:30:00-07:00",
"endGMT": "2017-06-17T14:00:00-07:00",
"start_time": 1466191800,
"end_time": 1466197200,
"fav_id": "wwdc17-7270"
},
{
"id": "301",
"title": "This is not under contingency anymore",
"track": "Distribution",
"type": "Session",
"room": "Pacific Heights",
"focus": [
"iOS",
"macOS",
"tvOS"
],
"keywords": [
"iap",
"subscription"
],
"description": "See what's new in subscriptions. Learn how our improvements give you more flexibility and control over pricing, and provide powerful incentives to engage and retain your customers.",
"startGMT": "2017-06-14T16:00:00-07:00",
"endGMT": "2017-06-14T16:40:00-07:00",
"start_time": 1465945200,
"end_time": 1465947600,
"fav_id": "wwdc17-301"
},
{
"id": "5190",
"title": "This is not under contingency anymore",
"track": "Media",
"type": "Lab",
"room": "Graphics, Games, and Media Lab A",
"focus": [
"iOS"
],
"keywords": [],
"description": "Meet the Apple News engineering and marketing teams to get answers to your questions about the rich capabilities of Apple News Format and publishing to Apple News. Bring your questions, content, and code.",
"startGMT": "2017-06-17T15:00:00-07:00",
"endGMT": "2017-06-17T17:00:00-07:00",
"start_time": 1466200800,
"end_time": 1466208000,
"fav_id": "wwdc17-5190"
},
{
"id": "7190",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Lab",
"room": "Fort Mason",
"focus": [
"iOS",
"macOS",
"tvOS",
"watchOS"
],
"keywords": [],
"description": "Meet with the experts about writing high performance and energy-efficient code. Come prepared to have your questions about power and performance answered.",
"startGMT": "2017-06-16T13:40:00-07:00",
"endGMT": "2017-06-16T15:30:00-07:00",
"start_time": 1466109600,
"end_time": 1466116200,
"fav_id": "wwdc17-7190"
},
{
"id": "2160",
"title": "This is not under contingency anymore",
"track": "App Frameworks",
"type": "Lab",
"room": "Graphics, Games, and Media Lab B",
"focus": [
"tvOS"
],
"keywords": [
"layout",
"media",
"streaming",
"template",
"tvjs",
"tvml",
"uikit"
],
"description": "TVMLKit is a new template-based UI layout technology introduced with tvOS. Get one-on-one technical guidance from Apple engineers about using TVMLKit in your apps. Bring your code and your questions.",
"startGMT": "2017-06-15T15:00:00-07:00",
"endGMT": "2017-06-15T18:00:00-07:00",
"start_time": 1466028000,
"end_time": 1466038800,
"fav_id": "wwdc17-2160"
},
{
"id": "5050",
"title": "This is not under contingency anymore",
"track": "Media",
"type": "Lab",
"room": "Graphics, Games, and Media Lab D",
"focus": [
"iOS"
],
"keywords": [
"api",
"apple",
"audio",
"catalogue",
"music"
],
"description": "Learn about how you can enhance your app by integrating the Apple Music API. Find out what technical and marketing resources are available. Drop-in to meet the team and get your questions answered.",
"startGMT": "2017-06-15T09:00:00-07:00",
"endGMT": "2017-06-15T12:00:00-07:00",
"start_time": 1466006400,
"end_time": 1466017200,
"fav_id": "wwdc17-5050"
},
{
"id": "7220",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Lab",
"room": "Frameworks Lab C",
"focus": [
"iOS",
"macOS",
"tvOS"
],
"keywords": [
"♆",
"⚡",
"⚡️",
"accessories",
"accessory",
"airplay",
"beacon",
"ble",
"bluetooth",
"btle",
"ea framework",
"external accessory",
"hard drive",
"hardware",
"ibeacon",
"kernel",
"kext",
"lightning",
"mfi",
"storage",
"thunderbolt",
"typec",
"type-c",
"usbc",
"usb-c",
"wac",
"wifi",
"wi-fi"
],
"description": "Have questions about your hardware accessory? Designing an app that communicates with external devices? Apple's engineers working on AirPlay, Bluetooth, Lightning, Thunderbolt, USB-C and Wi-Fi will be available to assist you. Bring your accessory or your technical questions and talk to an expert.",
"startGMT": "2017-06-17T09:00:00-07:00",
"endGMT": "2017-06-17T10:30:00-07:00",
"start_time": 1466179200,
"end_time": 1466184600,
"fav_id": "wwdc17-7220"
},
{
"id": "2220",
"title": "This is not under contingency anymore",
"track": "App Frameworks",
"type": "Lab",
"room": "Graphics, Games, and Media Lab C",
"focus": [
"iOS",
"macOS",
"tvOS",
"watchOS"
],
"keywords": [],
"description": "Meet with MapKit engineers to discuss how you can leverage the new MapKit APIs in your app. Get details and advice on using MapKit for tvOS, creating a Maps extension for booking a ride using the Intents framework, search autocomplete and more.",
"startGMT": "2017-06-16T11:30:00-07:00",
"endGMT": "2017-06-16T13:30:00-07:00",
"start_time": 1466101800,
"end_time": 1466109000,
"fav_id": "wwdc17-2220"
},
{
"id": "715",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Session",
"room": "Mission",
"focus": [
"iOS",
"macOS"
],
"keywords": [
"accelerate",
"compression",
"numerics",
"vector"
],
"description": "The Accelerate framework gives you fast, energy efficient signal and image processing and linear algebra libraries. Learn about new libraries dedicated to high performance neural networks and numerical integration.",
"startGMT": "2017-06-16T16:00:00-07:00",
"endGMT": "2017-06-16T16:40:00-07:00",
"start_time": 1466118000,
"end_time": 1466120400,
"fav_id": "wwdc17-715"
},
{
"id": "7070",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Lab",
"room": "Frameworks Lab C",
"focus": [
"iOS",
"macOS",
"tvOS",
"watchOS"
],
"keywords": [
"consent",
"crypto",
"keychain",
"passcode",
"password",
"protection",
"sandbox",
"secitem",
"touch"
],
"description": "Get together with the Apple security and privacy teams for expert advice on protecting your apps, safeguarding your users' data, and honoring your users' privacy. Bring your code and your questions.",
"startGMT": "2017-06-15T09:00:00-07:00",
"endGMT": "2017-06-15T11:00:00-07:00",
"start_time": 1466006400,
"end_time": 1466013600,
"fav_id": "wwdc17-7070"
},
{
"id": "3150",
"title": "This is not under contingency anymore",
"track": "Distribution",
"type": "Lab",
"room": "Fort Mason",
"focus": [
"iOS"
],
"keywords": [],
"description": "Bring your questions for the Search Ads team. Get tips on preparing for the upcoming launch and how to measure your results.",
"startGMT": "2017-06-15T11:00:00-07:00",
"endGMT": "2017-06-15T13:00:00-07:00",
"start_time": 1466013600,
"end_time": 1466020800,
"fav_id": "wwdc17-3150"
},
{
"id": "229",
"title": "This is not under contingency anymore",
"track": "App Frameworks",
"type": "Session",
"room": "Nob Hill",
"focus": [
"tvOS"
],
"keywords": [
"layout",
"media",
"streaming",
"template",
"tvjs",
"tvml",
"uikit"
],
"description": "Learn about advanced techniques in TVML based apps, such as bridging between native and javascript code, creating your own custom views for use inside of templates, creating your own custom templates, how to introduce UIKit view controllers alongside TVMLKit based templates, and additional best practices you can apply to your apps.",
"startGMT": "2017-06-16T16:00:00-07:00",
"endGMT": "2017-06-16T16:40:00-07:00",
"start_time": 1466118000,
"end_time": 1466120400,
"fav_id": "wwdc17-229"
},
{
"id": "511",
"title": "This is not under contingency anymore",
"track": "Media",
"type": "Video",
"room": null,
"focus": [
"iOS"
],
"keywords": [
"camera",
"capture",
"editing",
"image",
"jpg",
"live photo",
"photo",
"raw"
],
"description": "Continue your learning from Session 501: Advances in iOS Photography, with some additional details on scene monitoring and resource management in AVFoundation's powerful new AVCapturePhotoOutput API.",
"startGMT": null,
"endGMT": null,
"start_time": null,
"end_time": null,
"fav_id": "wwdc17-511"
},
{
"id": "242",
"title": "This is not under contingency anymore",
"track": "App Frameworks",
"type": "Session",
"room": "Pacific Heights",
"focus": [
"iOS",
"macOS",
"tvOS"
],
"keywords": [
"coordinator",
"core data",
"sql",
"sqlite"
],
"description": "Core Data is a framework that you can use to manage the model layer objects in your application, providing generalized and automated solutions to common tasks associated with object life cycle, object graph management, and persistence. Learn about the latest advancements in and explore best practices for taking full advantage of this powerful framework.",
"startGMT": "2017-06-17T10:00:00-07:00",
"endGMT": "2017-06-17T10:40:00-07:00",
"start_time": 1466182800,
"end_time": 1466185200,
"fav_id": "wwdc17-242"
},
{
"id": "222",
"title": "This is not under contingency anymore",
"track": "App Frameworks",
"type": "Session",
"room": "Presidio",
"focus": [
"iOS",
"tvOS",
"watchOS"
],
"keywords": [
"adaptive",
"builder",
"interface",
"ios",
"over",
"slide",
"split",
"xcode"
],
"description": "In this first part of a two part series, explore the motivation and concepts necessary to take advantage of trait collections. Walk through building an interface in Xcode and learn from the experts how to take advantage of new features to more easily create your app for different device sizes and configurations.",
"startGMT": "2017-06-16T11:00:00-07:00",
"endGMT": "2017-06-16T11:40:00-07:00",
"start_time": 1466100000,
"end_time": 1466102400,
"fav_id": "wwdc17-222"
},
{
"id": "713",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Session",
"room": "Nob Hill",
"focus": [
"iOS",
"watchOS"
],
"keywords": [
"accel",
"accelerometer",
"altimeter",
"altitude",
"bicycle",
"climbing",
"cmdevice",
"cmmotion",
"coremotion",
"cycling",
"driving",
"elevation",
"fitness",
"flights",
"floor",
"floors",
"gyro",
"gyroscope",
"health",
"healthkit",
"m7",
"m8",
"motion",
"pedometer",
"rotation",
"run",
"running",
"sensor",
"sensors",
"slope",
"stairs",
"step",
"steps",
"walk",
"walking",
"watchkit"
],
"description": "Core Motion enables your applications to access a wide array of sensors on iOS and watchOS devices. Discover how steps and activity detection can be used with user elevation changes to develop fitness apps. Explore ways to observe wrist rotation and effort and translate them to immersive health and fitness experiences.",
"startGMT": "2017-06-16T15:00:00-07:00",
"endGMT": "2017-06-16T15:40:00-07:00",
"start_time": 1466114400,
"end_time": 1466116800,
"fav_id": "wwdc17-713"
},
{
"id": "7130",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Lab",
"room": "Frameworks Lab C",
"focus": [
"iOS",
"macOS",
"tvOS"
],
"keywords": [
"♆",
"⚡",
"⚡️",
"accessories",
"accessory",
"airplay",
"beacon",
"ble",
"bluetooth",
"btle",
"drive",
"ea framework",
"external accessory",
"hard drive",
"hardware",
"ibeacon",
"kernel",
"kext",
"lightning",
"mfi",
"storage",
"thunderbolt",
"typec",
"type-c",
"usbc",
"usb-c",
"wac",
"wifi",
"wi-fi",
"wireless"
],
"description": "Have questions about your hardware accessory? Designing an app that communicates with external devices? Apple's engineers working on AirPlay, Bluetooth, Lightning, Thunderbolt, USB-C and Wi-Fi will be available to assist you. Bring your accessory or your technical questions and talk to an expert.",
"startGMT": "2017-06-15T13:00:00-07:00",
"endGMT": "2017-06-15T14:30:00-07:00",
"start_time": 1466020800,
"end_time": 1466026200,
"fav_id": "wwdc17-7130"
},
{
"id": "2130",
"title": "This is not under contingency anymore",
"track": "App Frameworks",
"type": "Lab",
"room": "Frameworks Lab D",
"focus": [
"tvOS"
],
"keywords": [
"appletv",
"apple tv",
"autolayout",
"auto layout",
"focus",
"focus engine",
"siri remote",
"uicollectionview",
"uikit"
],
"description": "The future of TV is apps, and tvOS is the foundation upon which these apps are built. Get one-on-one technical guidance from Apple engineers about your tvOS apps. Bring your code and your questions.",
"startGMT": "2017-06-15T14:00:00-07:00",
"endGMT": "2017-06-15T18:00:00-07:00",
"start_time": 1466024400,
"end_time": 1466038800,
"fav_id": "wwdc17-2130"
},
{
"id": "216",
"title": "This is not under contingency anymore",
"track": "App Frameworks",
"type": "Session",
"room": "Pacific Heights",
"focus": [
"iOS",
"tvOS"
],
"keywords": [
"animations",
"dynamics",
"navigation",
"uikit"
],
"description": "Direct onscreen manipulation is the cornerstone of the user experience on iOS. iOS 10 includes new support for making onscreen interactions even more immersive and interactive. Dive straight into the philosophy and techniques of building completely interactive, interruptible animations in your apps.",
"startGMT": "2017-06-15T17:00:00-07:00",
"endGMT": "2017-06-15T17:40:00-07:00",
"start_time": 1466035200,
"end_time": 1466037600,
"fav_id": "wwdc17-216"
},
{
"id": "7170",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Lab",
"room": "Graphics, Games, and Media Lab D",
"focus": [
"iOS",
"macOS"
],
"keywords": [
"algebra",
"blas",
"compression",
"dsp",
"math",
"numerics",
"performance",
"simd",
"veclib",
"vector",
"vimage"
],
"description": "Get expert advice on using the Accelerate framework and the simd library. Learn how to take advantage of the signal and image processing and linear algebra libraries to speed up your apps.",
"startGMT": "2017-06-16T12:00:00-07:00",
"endGMT": "2017-06-16T14:00:00-07:00",
"start_time": 1466103600,
"end_time": 1466110800,
"fav_id": "wwdc17-7170"
},
{
"id": "7290",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Lab",
"room": "Frameworks Lab D",
"focus": [
"iOS",
"macOS",
"tvOS",
"watchOS"
],
"keywords": [
"ats",
"bonjour",
"http",
"ipv6",
"nsurlconnection",
"nsurlsession",
"ssl",
"tcp",
"tls"
],
"description": "Engineers from the Apple networking teams will be on hand to provide expert advice, to help you troubleshoot networking problems, improve networking performance, and make sure your apps are IPv6 compatible. Bring your laptop, your code, and your questions.",
"startGMT": "2017-06-17T14:00:00-07:00",
"endGMT": "2017-06-17T17:00:00-07:00",
"start_time": 1466197200,
"end_time": 1466208000,
"fav_id": "wwdc17-7290"
},
{
"id": "7100",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Lab",
"room": "Frameworks Lab C",
"focus": [
"iOS",
"macOS",
"watchOS"
],
"keywords": [
"apns",
"notifications",
"widget"
],
"description": "Questions about Local and Remote Notifications, or working on a new Today View widget? Get together with the Apple engineering team for answers and expert advice.",
"startGMT": "2017-06-15T11:00:00-07:00",
"endGMT": "2017-06-15T13:00:00-07:00",
"start_time": 1466013600,
"end_time": 1466020800,
"fav_id": "wwdc17-7100"
},
{
"id": "238",
"title": "This is not under contingency anymore",
"track": "App Frameworks",
"type": "Session",
"room": "Nob Hill",
"focus": [
"iOS",
"macOS",
"tvOS"
],
"keywords": [
"component",
"foundation",
"length",
"measurement",
"ui",
"unit"
],
"description": "The Foundation framework, which includes the root object class, classes representing basic data types such as strings and byte arrays, and collection classes for storing other objects, has added new support for specifying Units and Measurements. Understand how to model your measurements and convert within dimensions. Learn from the experts how to use and surface Units and Measurements in your interfaces.",
"startGMT": "2017-06-17T16:00:00-07:00",
"endGMT": "2017-06-17T16:40:00-07:00",
"start_time": 1466204400,
"end_time": 1466206800,
"fav_id": "wwdc17-238"
},
{
"id": "405",
"title": "This is not under contingency anymore",
"track": "Developer Tools",
"type": "Session",
"room": "Pacific Heights",
"focus": [
"iOS",
"macOS",
"tvOS",
"watchOS"
],
"keywords": [
"bitcode",
"c++",
"cache",
"compile",
"compiler",
"incremental",
"libc",
"libc++",
"libstdc",
"libstdc++",
"link",
"linker",
"linking",
"llvm",
"lto",
"objc",
"objectivec",
"objective c",
"optimization",
"optimize",
"swift",
"vectorization",
"vectorizer"
],
"description": "The Apple LLVM compiler in Xcode 8 adds new language features, improved diagnostics, and more powerful optimizations. Get an overview of some new Objective-C and C++ features and learn how to use advanced optimizations to speed up your apps.",
"startGMT": "2017-06-14T17:00:00-07:00",
"endGMT": "2017-06-14T17:40:00-07:00",
"start_time": 1465948800,
"end_time": 1465951200,
"fav_id": "wwdc17-405"
},
{
"id": "4160",
"title": "This is not under contingency anymore",
"track": "Developer Tools",
"type": "Lab",
"room": "Developer Tools Lab B",
"focus": [
"iOS",
"macOS",
"tvOS",
"watchOS"
],
"keywords": [
"",
"c++",
"c++11",
"c++14",
"clang",
"linker",
"tools"
],
"description": "Bring your C, Objective-C, and C++ questions to discuss with the LLVM teams. Work out issues you're having building and linking C language code.",
"startGMT": "2017-06-15T12:00:00-07:00",
"endGMT": "2017-06-15T14:45:00-07:00",
"start_time": 1466017200,
"end_time": 1466027100,
"fav_id": "wwdc17-4160"
},
{
"id": "7140",
"title": "This is not under contingency anymore",
"track": "System Frameworks",
"type": "Lab",
"room": "Frameworks Lab B",
"focus": [
"iOS"
],
"keywords": [],
"description": "Apps enabled to work with CarPlay keep drivers focused on the road with a consistent design that's optimized for use in the car. Learn how to enable your audio or automaker app to work with CarPlay. If you develop CarPlay hardware, bring your questions to the CarPlay engineering team.",
"startGMT": "2017-06-15T15:30:00-07:00",
"endGMT": "2017-06-15T18:00:00-07:00",
"start_time": 1466029800,
"end_time": 1466038800,
"fav_id": "wwdc17-7140"
},
{
"id": "501",
"title": "This is not under contingency anymore",
"track": "Media",
"type": "Session",
"room": "Pacific Heights",