forked from halfrost/vue-objccn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.json
2355 lines (2354 loc) · 101 KB
/
api.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
{
"getIssuesListInfo": [{
"issue_content_title": "更轻量的 View Controllers",
"issue_header_meta": "#1 - 2013 年 7 月",
"issue_content_list": [{
"issue_content_item": "issue-1-0",
"issue_item_title": "介绍",
"issue_date": "2014/03/18",
"authorInfo": {
"authorLink": "http://tang3w.com",
"authorName": "唐天勇",
"authorAvatar": "http://localhost:8080/static/tangtianyong.jpg",
"authorDescribe": "<p>iOS 开发者</p> "
}
},
{
"issue_content_item": "issue-1-1",
"issue_item_title": "更轻量的 View Controllers",
"issue_date": "2014/03/18",
"authorInfo": {
"authorLink": "http://tang3w.com",
"authorName": "唐天勇",
"authorAvatar": "http://localhost:8080/static/tangtianyong.jpg",
"authorDescribe": "<p>iOS 开发者</p> "
}
},
{
"issue_content_item": "issue-1-2",
"issue_item_title": "整洁的 Table View 代码",
"issue_date": "2014/03/19",
"authorInfo": {
"authorLink": "http://tang3w.com",
"authorName": "唐天勇",
"authorAvatar": "http://localhost:8080/static/tangtianyong.jpg",
"authorDescribe": "<p>iOS 开发者</p> "
}
},
{
"issue_content_item": "issue-1-3",
"issue_item_title": "测试 View Controllers",
"issue_date": "2014/03/18",
"authorInfo": {
"authorLink": "http://tang3w.com",
"authorName": "唐天勇",
"authorAvatar": "http://localhost:8080/static/tangtianyong.jpg",
"authorDescribe": "<p>iOS 开发者</p> "
}
},
{
"issue_content_item": "issue-1-4",
"issue_item_title": "View Controller 容器",
"issue_date": "2014/03/18",
"authorInfo": {
"authorLink": "http://tang3w.com",
"authorName": "唐天勇",
"authorAvatar": "http://localhost:8080/static/tangtianyong.jpg",
"authorDescribe": "<p>iOS 开发者</p> "
}
}
]
},
{
"issue_content_title": "并发编程",
"issue_header_meta": "#2 - 2013 年 8 月",
"issue_content_list": [{
"issue_content_item": "issue-2-0",
"issue_item_title": "卷首语",
"issue_date": "2014/03/19",
"authorInfo": {
"authorLink": "http://weibo.com/fangyixiong",
"authorName": "方一雄",
"authorAvatar": "http://localhost:8080/static/fangyixiong.jpg",
"authorDescribe": "<p>iOS 程序员,iOS init 站长</p> "
}
},
{
"issue_content_item": "issue-2-1",
"issue_item_title": "并发编程:API 及挑战",
"issue_date": "2014/03/21",
"authorInfo": {
"authorLink": "http://beyondvincent.com",
"authorName": "破船",
"authorAvatar": "http://localhost:8080/static/pochuan.jpg",
"authorDescribe": "<p>破船是一名 iOS 开发者,目前工作在昆明。他在8小时之外还是一名业余跑者,爱好篮球。</p> "
}
},
{
"issue_content_item": "issue-2-2",
"issue_item_title": "常见的后台实践",
"issue_date": "2014/03/22",
"authorInfo": {
"authorLink": "http://onev.cat",
"authorName": "onevcat",
"authorAvatar": "http://localhost:8080/static/onevcat.jpg",
"authorDescribe": "<p>王巍 (@onevcat) 是一名 iOS 和 Unity3D 开发者,现旅居日本,寻求创意之源</p> "
}
},
{
"issue_content_item": "issue-2-3",
"issue_item_title": "底层并发 API",
"issue_date": "2014/03/29",
"authorInfo": {
"authorLink": "http://blog.nswebfrog.com",
"authorName": "webfrogs",
"authorAvatar": "http://localhost:8080/static/webfrog.jpg",
"authorDescribe": "<p>从事 iOS 系统的相关开发。 热爱编程,开源爱好者,喜欢 Linux,GitHub 等。 喜欢干净整洁的代码,轻微代码洁癖。</p> "
}
},
{
"issue_content_item": "issue-2-4",
"issue_item_title": "线程安全类的设计",
"issue_date": "2014/04/01",
"authorInfo": {
"authorLink": "http://onev.cat",
"authorName": "onevcat",
"authorAvatar": "http://localhost:8080/static/onevcat.jpg",
"authorDescribe": "<p>王巍 (@onevcat) 是一名 iOS 和 Unity3D 开发者,现旅居日本,寻求创意之源</p> "
}
},
{
"issue_content_item": "issue-2-5",
"issue_item_title": "测试并发程序",
"issue_date": "2014/04/06",
"authorInfo": {
"authorLink": "http://weibo.com/riven0951",
"authorName": "riven",
"authorAvatar": "http://localhost:8080/static/riven.jpg",
"authorDescribe": "<p>果粉,因为简洁和另类的语法用上了Python,现在一直在做iOS开发。喜欢收集外文歌曲和配乐,喜欢各种科幻电影。</p> "
}
}
]
},
{
"issue_content_title": "视图",
"issue_header_meta": "#3 - 2013 年 8 月",
"issue_content_list": [{
"issue_content_item": "issue-3-0",
"issue_item_title": "卷首语",
"issue_date": "2014/04/13",
"authorInfo": {
"authorLink": " ",
"authorName": " ",
"authorAvatar": " ",
"authorDescribe": " "
}
},
{
"issue_content_item": "issue-3-1",
"issue_item_title": "绘制像素到屏幕上",
"issue_date": "2014/03/22",
"authorInfo": {
"authorLink": " ",
"authorName": " ",
"authorAvatar": " ",
"authorDescribe": " "
}
},
{
"issue_content_item": "issue-3-2",
"issue_item_title": "理解 Scroll Views",
"issue_date": "2014/03/23",
"authorInfo": {
"authorLink": " ",
"authorName": " ",
"authorAvatar": " ",
"authorDescribe": " "
}
},
{
"issue_content_item": "issue-3-3",
"issue_item_title": "自定义 Collection View 布局",
"issue_date": "2014/03/29",
"authorInfo": {
"authorLink": " ",
"authorName": " ",
"authorAvatar": " ",
"authorDescribe": " "
}
},
{
"issue_content_item": "issue-3-4",
"issue_item_title": "自定义控件",
"issue_date": "2014/04/20",
"authorInfo": {
"authorLink": "http://objcio.com/",
"authorName": "migrant",
"authorAvatar": "http://localhost:8080/static/migrant.jpg",
"authorDescribe": "<p>橱窗里的荷兰赌徒</p> "
}
},
{
"issue_content_item": "issue-3-5",
"issue_item_title": "先进的自动布局工具箱",
"issue_date": "2014/04/16",
"authorInfo": {
"authorLink": " ",
"authorName": " ",
"authorAvatar": " ",
"authorDescribe": " "
}
}
]
},
{
"issue_content_title": "Core Data",
"issue_header_meta": "#4 - 2013 年 9 月",
"issue_content_list": [{
"issue_content_item": "issue-4-0",
"issue_item_title": "卷首语",
"issue_date": "2014/03/28",
"authorInfo": {
"authorLink": "http://weibo.com/fangyixiong",
"authorName": "方一雄",
"authorAvatar": "http://localhost:8080/static/fangyixiong.jpg",
"authorDescribe": "<p>iOS 程序员,iOS init 站长</p> "
}
},
{
"issue_content_item": "issue-4-1",
"issue_item_title": "Core Data 概述",
"issue_date": "2014/03/29",
"authorInfo": {
"authorLink": " ",
"authorName": " ",
"authorAvatar": " ",
"authorDescribe": " "
}
},
{
"issue_content_item": "issue-4-2",
"issue_item_title": "一个完整的 Core Data 应用",
"issue_date": "2014/04/13",
"authorInfo": {
"authorLink": " ",
"authorName": " ",
"authorAvatar": " ",
"authorDescribe": " "
}
},
{
"issue_content_item": "issue-4-3",
"issue_item_title": "用 SQLite 和 FMDB 替代 Core Data",
"issue_date": "2014/04/16",
"authorInfo": {
"authorLink": " ",
"authorName": " ",
"authorAvatar": " ",
"authorDescribe": " "
}
},
{
"issue_content_item": "issue-4-4",
"issue_item_title": "数据模型和模型对象",
"issue_date": "2014/04/13",
"authorInfo": {
"authorLink": "http://forkpanda.com",
"authorName": "熊猫",
"authorAvatar": "http://localhost:8080/static/panda.jpg",
"authorDescribe": "<p>@ForkPanda 正在潜心修行的iOS开发者,在不断的寻求蹂躏与自我蹂躏。</p> "
}
},
{
"issue_content_item": "issue-4-5",
"issue_item_title": "导入大数据集",
"issue_date": "2014/04/08",
"authorInfo": {
"authorLink": "http://weibo.com/mrmign",
"authorName": "李明",
"authorAvatar": "http://localhost:8080/static/liming.jpg",
"authorDescribe": "<p>还是一名学生,正在努力进入iOS开发行列。</p> "
}
},
{
"issue_content_item": "issue-4-6",
"issue_item_title": "Fetch 请求",
"issue_date": "2014/04/22",
"authorInfo": {
"authorLink": "http://blog.sina.com.cn/u/1867019351",
"authorName": "树叶",
"authorAvatar": "http://localhost:8080/static/shuye.jpg",
"authorDescribe": "<p>现就职于一家小型互联网创业公司,对 PC 和移动产品设计与开发均感兴趣,不过暂时还是在工作中和业余时间勤奋钻研的菜菜鸟。</p> "
}
},
{
"issue_content_item": "issue-4-7",
"issue_item_title": "自定义 Core Data 迁移",
"issue_date": "2014/04/18",
"authorInfo": {
"authorLink": "https://twitter.com/nixzhu",
"authorName": "朱宏旭",
"authorAvatar": "http://localhost:8080/static/nix.jpg",
"authorDescribe": "<p>留着长发的 NIX,用过几年 Linux,目前做 iOS 开发。喜欢科幻小说和科幻电影,因为幻想和梦境能带给我异世界体验。偶尔半梦半醒之间会质疑人生的意义,不知活着的所谓。</p> "
}
}
]
},
{
"issue_content_title": "iOS 7",
"issue_header_meta": "#5 - 2013 年 10 月",
"issue_content_list": [{
"issue_content_item": "issue-5-0",
"issue_item_title": "卷首语",
"issue_date": "2014/03/20",
"authorInfo": {
"authorLink": "http://weibo.com/fangyixiong",
"authorName": "方一雄",
"authorAvatar": "http://localhost:8080/static/fangyixiong.jpg",
"authorDescribe": "<p>iOS 程序员,iOS init 站长</p> "
}
},
{
"issue_content_item": "issue-5-1",
"issue_item_title": "初识 TextKit",
"issue_date": "2014/03/23",
"authorInfo": {
"authorLink": "http://weibo.com/u/2315855442",
"authorName": "和谐老约翰",
"authorAvatar": "http://localhost:8080/static/oldjohn.jpg",
"authorDescribe": "<p>码农 加里敦大学名誉教授...</p> "
}
},
{
"issue_content_item": "issue-5-2",
"issue_item_title": "UICollectionView + UIKit 力学",
"issue_date": "2014/03/23",
"authorInfo": {
"authorLink": "http://morisunshine.com",
"authorName": "黄宣冬",
"authorAvatar": "http://localhost:8080/static/huangxuanhua.jpg",
"authorDescribe": "<p>从事 iOS 应用开发的程序猿一枚,江湖自称治愈系萌汉子,优美代码追求者,正在人生漫漫路中缓缓前行。</p> "
}
},
{
"issue_content_item": "issue-5-3",
"issue_item_title": "View Controller 转场",
"issue_date": "2014/04/06",
"authorInfo": {
"authorLink": "http://weibo.com/fangyixiong",
"authorName": "方一雄",
"authorAvatar": "http://localhost:8080/static/fangyixiong.jpg",
"authorDescribe": "<p>iOS 程序员,iOS init 站长</p> "
}
},
{
"issue_content_item": "issue-5-4",
"issue_item_title": "从 NSURLConnection 到 NSURLSession",
"issue_date": "2014/04/11",
"authorInfo": {
"authorLink": "http://weibo.com/fangyixiong",
"authorName": "方一雄",
"authorAvatar": "http://localhost:8080/static/fangyixiong.jpg",
"authorDescribe": "<p>iOS 程序员,iOS init 站长</p> "
}
},
{
"issue_content_item": "issue-5-5",
"issue_item_title": "iOS 7 的多任务",
"issue_date": "2014/04/21",
"authorInfo": {
"authorLink": "http://weibo.com/ylovesy",
"authorName": "杨奕洋",
"authorAvatar": "http://localhost:8080/static/ylovesy.jpg",
"authorDescribe": "<p>微信 iOS 工程师</p> "
}
},
{
"issue_content_item": "issue-5-6",
"issue_item_title": "iOS 7 : 隐藏技巧和变通之道",
"issue_date": "2014/04/06",
"authorInfo": {
"authorLink": "http://ichuan.me",
"authorName": "宵练",
"authorAvatar": "http://localhost:8080/static/xiaolian.jpg",
"authorDescribe": "<p>前 iOS 开发者,现在重新走上 C++ 的不归路。伪清新学院派代表,培养中的爱好包括设计、摄影、作文。</p> "
}
},
{
"issue_content_item": "issue-5-7",
"issue_item_title": "为 iOS 7 重新设计 App",
"issue_date": "2014/04/16",
"authorInfo": {
"authorLink": "http://weibo.com/fangyixiong",
"authorName": "方一雄",
"authorAvatar": "http://localhost:8080/static/fangyixiong.jpg",
"authorDescribe": "<p>iOS 程序员,iOS init 站长</p> "
}
}
]
},
{
"issue_content_title": "Build 工具",
"issue_header_meta": "#6 - 2013 年 11 月",
"issue_content_list": [{
"issue_content_item": "issue-6-0",
"issue_item_title": "卷首语",
"issue_date": "2014/03/24",
"authorInfo": {
"authorLink": "http://weibo.com/fangyixiong",
"authorName": "方一雄",
"authorAvatar": "http://localhost:8080/static/fangyixiong.jpg",
"authorDescribe": "<p>iOS 程序员,iOS init 站长</p> "
}
},
{
"issue_content_item": "issue-6-1",
"issue_item_title": "Build 过程",
"issue_date": "2014/03/26",
"authorInfo": {
"authorLink": "http://beyondvincent.com",
"authorName": "破船",
"authorAvatar": "http://localhost:8080/static/pochuan.jpg",
"authorDescribe": "<p>破船是一名 iOS 开发者,目前工作在昆明。他在8小时之外还是一名业余跑者,爱好篮球。</p> "
}
},
{
"issue_content_item": "issue-6-2",
"issue_item_title": "编译器",
"issue_date": "2014/03/23",
"authorInfo": {
"authorLink": "http://weibo.com/beatifulcodes",
"authorName": "sunset",
"authorAvatar": "http://localhost:8080/static/sunset.jpg",
"authorDescribe": "<p>Female, (Mobile Application) R&D Manager</p> "
}
},
{
"issue_content_item": "issue-6-3",
"issue_item_title": "Mach-O 可执行文件",
"issue_date": "2014/03/31",
"authorInfo": {
"authorLink": "http://weibo.com/u/2113020163",
"authorName": "流年一水",
"authorAvatar": "http://localhost:8080/static/liunianyishui.jpg",
"authorDescribe": "<p>心有多大世界才有多大,走到过的远方才叫疆域</p> "
}
},
{
"issue_content_item": "issue-6-4",
"issue_item_title": "深入理解 CocoaPods",
"issue_date": "2014/04/21",
"authorInfo": {
"authorLink": "http://weibo.com/poisondu",
"authorName": "Programmer毒",
"authorAvatar": "http://localhost:8080/static/poisondu.jpg",
"authorDescribe": "<p>iOS 开发,兴趣爱好太广泛</p> "
}
},
{
"issue_content_item": "issue-6-5",
"issue_item_title": "为 iOS 建立 Travis CI",
"issue_date": "2014/04/23",
"authorInfo": {
"authorLink": "http://weibo.com/u/1883102275",
"authorName": "袁欣",
"authorAvatar": "http://localhost:8080/static/jason.jpg",
"authorDescribe": "<p>关注移动开发;玩一点萨克斯,架子鼓 ;游泳与网球入门者</p> "
}
}
]
},
{
"issue_content_title": "Foundation",
"issue_header_meta": "#7 - 2013 年 12 月",
"issue_content_list": [{
"issue_content_item": "issue-7-0",
"issue_item_title": "卷首语",
"issue_date": "2014/03/23",
"authorInfo": {
"authorLink": "http://jeoam.github.io/",
"authorName": "JeOam",
"authorAvatar": "http://localhost:8080/static/jeoam.jpg",
"authorDescribe": "<p>努力成为 iOS 开发者中,拖延症患者...</p> "
}
},
{
"issue_content_item": "issue-7-1",
"issue_item_title": "基础集合类",
"issue_date": "2014/04/14",
"authorInfo": {
"authorLink": "http://objcio.com/",
"authorName": "migrant",
"authorAvatar": "http://localhost:8080/static/migrant.jpg",
"authorDescribe": "<p>橱窗里的荷兰赌徒</p> "
}
},
{
"issue_content_item": "issue-7-2",
"issue_item_title": "值对象",
"issue_date": "2014/04/23",
"authorInfo": {
"authorLink": "http://onev.cat",
"authorName": "onevcat",
"authorAvatar": "http://localhost:8080/static/onevcat.jpg",
"authorDescribe": "<p>王巍 (@onevcat) 是一名 iOS 和 Unity3D 开发者,现旅居日本,寻求创意之源</p> "
}
},
{
"issue_content_item": "issue-7-3",
"issue_item_title": "KVC 和 KVO",
"issue_date": "2014/04/04",
"authorInfo": {
"authorLink": "https://github.com/DJBen",
"authorName": "卢思豪",
"authorAvatar": "http://localhost:8080/static/DJBen.jpg",
"authorDescribe": "<p>iOS 开发者,目前就读 Johns Hopkins University</p> "
}
},
{
"issue_content_item": "issue-7-4",
"issue_item_title": "消息传递机制",
"issue_date": "2014/04/26",
"authorInfo": {
"authorLink": "https://github.com/DJBen",
"authorName": "卢思豪",
"authorAvatar": "http://localhost:8080/static/DJBen.jpg",
"authorDescribe": "<p>iOS 开发者,目前就读 Johns Hopkins University</p> "
}
},
{
"issue_content_item": "issue-7-5",
"issue_item_title": "自定义 Formatters",
"issue_date": "2014/04/01",
"authorInfo": {
"authorLink": "http://itouch2.github.io/",
"authorName": "Tu You",
"authorAvatar": "http://localhost:8080/static/itouch2.jpg",
"authorDescribe": "<p>iOS 爱好者,老友记爱好者,美食爱好者,喜欢研究各种移动小交互。</p> "
}
},
{
"issue_content_item": "issue-7-6",
"issue_item_title": "语言标签",
"issue_date": "2014/04/25",
"authorInfo": {
"authorLink": "http://onev.cat",
"authorName": "onevcat",
"authorAvatar": "http://localhost:8080/static/onevcat.jpg",
"authorDescribe": "<p>王巍 (@onevcat) 是一名 iOS 和 Unity3D 开发者,现旅居日本,寻求创意之源</p> "
}
}
]
},
{
"issue_content_title": "四轴无人机项目",
"issue_header_meta": "#8 - 2014 年 1 月",
"issue_content_list": [{
"issue_content_item": "issue-8-0",
"issue_item_title": "卷首语",
"issue_date": "2014/03/24",
"authorInfo": {
"authorLink": "http://weibo.com/sdagon",
"authorName": "Vienta",
"authorAvatar": "http://localhost:8080/static/vienta.jpg",
"authorDescribe": "<p>iOS 开发者</p> "
}
},
{
"issue_content_item": "issue-8-1",
"issue_item_title": "项目介绍",
"issue_date": "2014/04/24",
"authorInfo": {
"authorLink": "http://koofrank.com",
"authorName": "KooFrank",
"authorAvatar": "http://localhost:8080/static/koofrank.jpg",
"authorDescribe": "<p>iOS 开发者,有产品和技术洁癖</p> "
}
},
{
"issue_content_item": "issue-8-2",
"issue_item_title": "与四轴无人机的通讯",
"issue_date": "2014/04/24",
"authorInfo": {
"authorLink": "http://diwu.me",
"authorName": "吴迪",
"authorAvatar": "http://localhost:8080/static/wudi.jpg",
"authorDescribe": "<p>@唯木念,创业者,iOS 从业者, 会写一些 Nodejs。</p> "
}
},
{
"issue_content_item": "issue-8-3",
"issue_item_title": "导航应用",
"issue_date": "2014/03/31",
"authorInfo": {
"authorLink": "http://diwu.me",
"authorName": "吴迪",
"authorAvatar": "http://localhost:8080/static/wudi.jpg",
"authorDescribe": "<p>@唯木念,创业者,iOS 从业者, 会写一些 Nodejs。</p> "
}
},
{
"issue_content_item": "issue-8-4",
"issue_item_title": "客户端",
"issue_date": "2014/03/25",
"authorInfo": {
"authorLink": "http://weibo.com/p/1005051822396587",
"authorName": "zinc",
"authorAvatar": "http://localhost:8080/static/zinc.jpg",
"authorDescribe": "<p>iOS 开发者,目前工作在北京。喜欢吉他,游戏爱好者。</p> "
}
}
]
},
{
"issue_content_title": "字符串",
"issue_header_meta": "#9 - 2014 年 2 月",
"issue_content_list": [{
"issue_content_item": "issue-9-0",
"issue_item_title": "卷首语",
"issue_date": "2014/03/24",
"authorInfo": {
"authorLink": "http://weibo.com/fangyixiong",
"authorName": "方一雄",
"authorAvatar": "http://localhost:8080/static/fangyixiong.jpg",
"authorDescribe": "<p>iOS 程序员,iOS init 站长</p> "
}
},
{
"issue_content_item": "issue-9-1",
"issue_item_title": "NSString 与 Unicode",
"issue_date": "2014/04/16",
"authorInfo": {
"authorLink": "http://weibo.com/cbbcd",
"authorName": "陈彬彬",
"authorAvatar": "http://localhost:8080/static/cbb.jpg",
"authorDescribe": "<p>iOS 开发者,现居北京。排印爱好者。</p> "
}
},
{
"issue_content_item": "issue-9-2",
"issue_item_title": "玩转字符串",
"issue_date": "2014/03/23",
"authorInfo": {
"authorLink": "https://twitter.com/nixzhu",
"authorName": "朱宏旭",
"authorAvatar": "http://localhost:8080/static/nix.jpg",
"authorDescribe": "<p>留着长发的 NIX,用过几年 Linux,目前做 iOS 开发。喜欢科幻小说和科幻电影,因为幻想和梦境能带给我异世界体验。偶尔半梦半醒之间会质疑人生的意义,不知活着的所谓。</p> "
}
},
{
"issue_content_item": "issue-9-3",
"issue_item_title": "字符串本地化",
"issue_date": "2014/03/24",
"authorInfo": {
"authorLink": "http://ycflame.com/",
"authorName": "杨超",
"authorAvatar": "http://localhost:8080/static/yangchao.jpg",
"authorDescribe": "<p>Python 从业者,Mac 全键盘流用户,iOS 开发打怪练级中。从二次元到异次元均有涉猎,致力于为有趣的东西寻找意义,为无聊的生活赋予灵感。</p> "
}
},
{
"issue_content_item": "issue-9-4",
"issue_item_title": "字符串解析",
"issue_date": "2014/03/25",
"authorInfo": {
"authorLink": "http://weibo.com/riven0951",
"authorName": "riven",
"authorAvatar": "http://localhost:8080/static/riven.jpg",
"authorDescribe": "<p>果粉,因为简洁和另类的语法用上了Python,现在一直在做iOS开发。喜欢收集外文歌曲和配乐,喜欢各种科幻电影。</p> "
}
},
{
"issue_content_item": "issue-9-5",
"issue_item_title": "字符串渲染",
"issue_date": "2014/03/20",
"authorInfo": {
"authorLink": " ",
"authorName": " ",
"authorAvatar": " ",
"authorDescribe": " "
}
}
]
},
{
"issue_content_title": "同步数据",
"issue_header_meta": "#10 - 2014 年 3 月",
"issue_content_list": [{
"issue_content_item": "issue-10-0",
"issue_item_title": "卷首语",
"issue_date": "2014/04/03",
"authorInfo": {
"authorLink": "http://sjpsega.com",
"authorName": "sjpsega",
"authorAvatar": "http://localhost:8080/static/sjpsega.jpg",
"authorDescribe": "<p>iOS 爱好者,目标是开发几款有趣、实用的App</p> "
}
},
{
"issue_content_item": "issue-10-1",
"issue_item_title": "数据同步",
"issue_date": "2014/04/13",
"authorInfo": {
"authorLink": "http://weibo.com/onetaway",
"authorName": "郭中强",
"authorAvatar": "http://localhost:8080/static/onetaway.jpg",
"authorDescribe": "<p>@Onetaway 旅居魔都的小小 iOS dev。有梦想,在飞翔</p> "
}
},
{
"issue_content_item": "issue-10-2",
"issue_item_title": "iCloud 和 Core Data",
"issue_date": "2014/04/05",
"authorInfo": {
"authorLink": "http://diwu.me",
"authorName": "吴迪",
"authorAvatar": "http://localhost:8080/static/wudi.jpg",
"authorDescribe": "<p>@唯木念,创业者,iOS 从业者, 会写一些 Nodejs。</p> "
}
},
{
"issue_content_item": "issue-10-3",
"issue_item_title": "精通 iCloud 文档存储",
"issue_date": "2014/04/20",
"authorInfo": {
"authorLink": "http://objcio.com/",
"authorName": "migrant",
"authorAvatar": "http://localhost:8080/static/migrant.jpg",
"authorDescribe": "<p>橱窗里的荷兰赌徒</p> "
}
},
{
"issue_content_item": "issue-10-4",
"issue_item_title": "同步案例学习",
"issue_date": "2014/03/20",
"authorInfo": {
"authorLink": "http://ycflame.com/",
"authorName": "杨超",
"authorAvatar": "http://localhost:8080/static/yangchao.jpg",
"authorDescribe": "<p>Python 从业者,Mac 全键盘流用户,iOS 开发打怪练级中。从二次元到异次元均有涉猎,致力于为有趣的东西寻找意义,为无聊的生活赋予灵感。</p> "
}
},
{
"issue_content_item": "issue-10-5",
"issue_item_title": "Core Data 网络应用实例",
"issue_date": "2014/04/19",
"authorInfo": {
"authorLink": " ",
"authorName": " ",
"authorAvatar": " ",
"authorDescribe": " "
}
},
{
"issue_content_item": "issue-10-6",
"issue_item_title": "IP,TCP 和 HTTP",
"issue_date": "2014/04/16",
"authorInfo": {
"authorLink": "http://weibo.com/beatifulcodes",
"authorName": "sunset",
"authorAvatar": "http://localhost:8080/static/sunset.jpg",
"authorDescribe": "<p>Female, (Mobile Application) R&D Manager</p> "
}
}
]
},
{
"issue_content_title": "Android",
"issue_header_meta": "#11 - 2014 年 4 月",
"issue_content_list": [{
"issue_content_item": "issue-11-0",
"issue_item_title": "卷首语",
"issue_date": "2014/04/03",
"authorInfo": {
"authorLink": "http://weibo.com/fangyixiong",
"authorName": "方一雄",
"authorAvatar": "http://localhost:8080/static/fangyixiong.jpg",
"authorDescribe": "<p>iOS 程序员,iOS init 站长</p> "
}
},
{
"issue_content_item": "issue-11-1",
"issue_item_title": "iOS 开发者的 Android 第一课",
"issue_date": "2014/04/12",
"authorInfo": {
"authorLink": "https://twitter.com/nixzhu",
"authorName": "朱宏旭",
"authorAvatar": "http://localhost:8080/static/nix.jpg",
"authorDescribe": "<p>留着长发的 NIX,用过几年 Linux,目前做 iOS 开发。喜欢科幻小说和科幻电影,因为幻想和梦境能带给我异世界体验。偶尔半梦半醒之间会质疑人生的意义,不知活着的所谓。</p> "
}
},
{
"issue_content_item": "issue-11-2",
"issue_item_title": "Android Intents",
"issue_date": "2014/04/17",
"authorInfo": {
"authorLink": "http://weibo.com/beatifulcodes",
"authorName": "sunset",
"authorAvatar": "http://localhost:8080/static/sunset.jpg",
"authorDescribe": "<p>Female, (Mobile Application) R&D Manager</p> "
}
},
{
"issue_content_item": "issue-11-3",
"issue_item_title": "响应式 Android 应用",
"issue_date": "2014/04/19",
"authorInfo": {
"authorLink": "http://daisyyaya.github.io",
"authorName": "Daisyyaya",
"authorAvatar": "http://localhost:8080/static/daisyyaya.jpg",
"authorDescribe": "<p>On the road to be a qualified iOS programmer and UI designer.</p> "
}
},
{
"issue_content_item": "issue-11-4",
"issue_item_title": "Android 通知中心",
"issue_date": "2014/04/07",
"authorInfo": {
"authorLink": "http://diwu.me",
"authorName": "吴迪",
"authorAvatar": "http://localhost:8080/static/wudi.jpg",
"authorDescribe": "<p>@唯木念,创业者,iOS 从业者, 会写一些 Nodejs。</p> "
}
},
{
"issue_content_item": "issue-11-5",
"issue_item_title": "Android 中的 SQLite 数据库支持",
"issue_date": "2014/04/15",
"authorInfo": {
"authorLink": "http://weibo.com/p/1005051822396587",
"authorName": "zinc",
"authorAvatar": "http://localhost:8080/static/zinc.jpg",
"authorDescribe": "<p>iOS 开发者,目前工作在北京。喜欢吉他,游戏爱好者。</p> "
}
},
{
"issue_content_item": "issue-11-6",
"issue_item_title": "依赖注入和注解,为什么 Java 比你想象的要好",
"issue_date": "2014/04/12",
"authorInfo": {
"authorLink": "http://bayonetta.github.io",
"authorName": "赵帅",
"authorAvatar": "http://localhost:8080/static/Bayonetta.jpg",
"authorDescribe": "<p>@Bayonetta,iOS/Android 爱好者,目前任职于 Weico</p> "
}
}
]
},
{
"issue_content_title": "动画",
"issue_header_meta": "#12 - 2014 年 5 月",
"issue_content_list": [{
"issue_content_item": "issue-12-0",
"issue_item_title": "卷首语",
"issue_date": "2014/05/18",
"authorInfo": {
"authorLink": "http://weibo.com/fangyixiong",
"authorName": "方一雄",
"authorAvatar": "http://localhost:8080/static/fangyixiong.jpg",
"authorDescribe": "<p>iOS 程序员,iOS init 站长</p> "
}
},
{
"issue_content_item": "issue-12-1",
"issue_item_title": "动画解释",
"issue_date": "2014/05/15",
"authorInfo": {
"authorLink": "http://ckitakishi.com",
"authorName": "Ckitakishi",
"authorAvatar": "http://localhost:8080/static/Ckitakishi.jpg",
"authorDescribe": "<p>iOS 开发者,懂一点 web 前端开发。正在为写出优美的代码而修炼。</p> "
}
},
{
"issue_content_item": "issue-12-2",
"issue_item_title": "Layer 中自定义属性的动画",
"issue_date": "2014/05/10",
"authorInfo": {
"authorLink": "https://twitter.com/nixzhu",
"authorName": "朱宏旭",
"authorAvatar": "http://localhost:8080/static/nix.jpg",
"authorDescribe": "<p>留着长发的 NIX,用过几年 Linux,目前做 iOS 开发。喜欢科幻小说和科幻电影,因为幻想和梦境能带给我异世界体验。偶尔半梦半醒之间会质疑人生的意义,不知活着的所谓。</p> "
}
},
{
"issue_content_item": "issue-12-3",
"issue_item_title": "自定义 ViewController 容器转场",
"issue_date": "2014/05/12",
"authorInfo": {
"authorLink": "http://blog.codingcoder.com",
"authorName": "破土君",
"authorAvatar": "http://localhost:8080/static/potu.jpg",
"authorDescribe": "<p>努力做一只懂产品的猿,放慢脚步,去感受生活的美好。</p> "
}
},
{
"issue_content_item": "issue-12-4",
"issue_item_title": "View-Layer 协作",
"issue_date": "2014/05/13",
"authorInfo": {
"authorLink": "http://onev.cat",
"authorName": "onevcat",
"authorAvatar": "http://localhost:8080/static/onevcat.jpg",
"authorDescribe": "<p>王巍 (@onevcat) 是一名 iOS 和 Unity3D 开发者,现旅居日本,寻求创意之源</p> "
}
},
{
"issue_content_item": "issue-12-5",
"issue_item_title": "Collection View 动画",
"issue_date": "2014/05/12",
"authorInfo": {
"authorLink": "http://diwu.me",
"authorName": "吴迪",
"authorAvatar": "http://localhost:8080/static/wudi.jpg",
"authorDescribe": "<p>@唯木念,创业者,iOS 从业者, 会写一些 Nodejs。</p> "
}
},
{
"issue_content_item": "issue-12-6",
"issue_item_title": "交互式动画",
"issue_date": "2014/05/18",
"authorInfo": {
"authorLink": "http://morisunshine.com",
"authorName": "黄宣冬",
"authorAvatar": "http://localhost:8080/static/huangxuanhua.jpg",
"authorDescribe": "<p>从事 iOS 应用开发的程序猿一枚,江湖自称治愈系萌汉子,优美代码追求者,正在人生漫漫路中缓缓前行。</p> "
}
}
]
},
{
"issue_content_title": "架构",
"issue_header_meta": "#13 - 2014 年 6 月",
"issue_content_list": [{
"issue_content_item": "issue-13-0",
"issue_item_title": "卷首语",
"issue_date": "2014/06/19",
"authorInfo": {
"authorLink": "http://forkpanda.com",
"authorName": "熊猫",
"authorAvatar": "http://localhost:8080/static/panda.jpg",
"authorDescribe": "<p>@ForkPanda 正在潜心修行的iOS开发者,在不断的寻求蹂躏与自我蹂躏。</p> "
}
},
{
"issue_content_item": "issue-13-1",
"issue_item_title": "MVVM 介绍",
"issue_date": "2014/06/10",
"authorInfo": {
"authorLink": "https://twitter.com/nixzhu",
"authorName": "朱宏旭",
"authorAvatar": "http://localhost:8080/static/nix.jpg",
"authorDescribe": "<p>留着长发的 NIX,用过几年 Linux,目前做 iOS 开发。喜欢科幻小说和科幻电影,因为幻想和梦境能带给我异世界体验。偶尔半梦半醒之间会质疑人生的意义,不知活着的所谓。</p> "
}
},
{
"issue_content_item": "issue-13-2",
"issue_item_title": "避免滥用单例",
"issue_date": "2014/06/15",
"authorInfo": {
"authorLink": "http://blog.codingcoder.com",
"authorName": "破土君",
"authorAvatar": "http://localhost:8080/static/potu.jpg",
"authorDescribe": "<p>努力做一只懂产品的猿,放慢脚步,去感受生活的美好。</p> "
}
},
{
"issue_content_item": "issue-13-3",
"issue_item_title": "iOS 中的行为",
"issue_date": "2014/06/13",
"authorInfo": {
"authorLink": "http://forkpanda.com",
"authorName": "熊猫",
"authorAvatar": "http://localhost:8080/static/panda.jpg",
"authorDescribe": "<p>@ForkPanda 正在潜心修行的iOS开发者,在不断的寻求蹂躏与自我蹂躏。</p> "
}
},
{
"issue_content_item": "issue-13-4",
"issue_item_title": "子类",
"issue_date": "2014/06/12",
"authorInfo": {
"authorLink": "http://www.phenmod.com",
"authorName": "朱兴灿",
"authorAvatar": "http://localhost:8080/static/phenmod.jpg",
"authorDescribe": "<p>@phenmod,新奇有趣事务爱好者,心中常念“坐忘”,的中二青年。</p> "
}
},
{
"issue_content_item": "issue-13-5",
"issue_item_title": "使用 VIPER 构建 iOS 应用",
"issue_date": "2014/06/19",
"authorInfo": {
"authorLink": "http://diwu.me",
"authorName": "吴迪",
"authorAvatar": "http://localhost:8080/static/wudi.jpg",
"authorDescribe": "<p>@唯木念,创业者,iOS 从业者, 会写一些 Nodejs。</p> "
}
}
]
},
{
"issue_content_title": "回到 Mac",
"issue_header_meta": "#14 - 2014 年 7 月",
"issue_content_list": [{
"issue_content_item": "issue-14-0",
"issue_item_title": "卷首语",
"issue_date": "2014/07/26",
"authorInfo": {
"authorLink": "http://weibo.com/johnnywjy",
"authorName": "Johnny Wu",