-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1062 lines (690 loc) · 44.2 KB
/
index.html
File metadata and controls
1062 lines (690 loc) · 44.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="记录学习中的点滴,努力打怪升级-MaLi">
<title>记录学习中的点滴,努力打怪升级-MaLi</title>
<meta name="author" content="Mali">
<link rel="alternate" type="application/atom+xml" title="RSS" href="/atom.xml">
<meta name="description" content="记录学习中的点点滴滴,努力打怪升级~ Objective-C && PHP && Swift && Python ‘s learner.">
<meta property="og:type" content="blog">
<meta property="og:title" content="记录学习中的点滴,努力打怪升级-MaLi">
<meta property="og:url" content="http://superma.me/index.html">
<meta property="og:site_name" content="记录学习中的点滴,努力打怪升级-MaLi">
<meta property="og:description" content="记录学习中的点点滴滴,努力打怪升级~ Objective-C && PHP && Swift && Python ‘s learner.">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="记录学习中的点滴,努力打怪升级-MaLi">
<meta name="twitter:description" content="记录学习中的点点滴滴,努力打怪升级~ Objective-C && PHP && Swift && Python ‘s learner.">
<meta property="og:image" content="http://superma.me/assets/images/avatar.jpg"/>
<!--STYLES-->
<link rel="stylesheet" href="/assets/css/style-sxklfps8ywgfyyjcowvnb4gxdgt0zjts3hsguljmv9uqanxjbnitrovtbrek.min.css">
<!--STYLES END-->
</head>
<body>
<div id="blog">
<!-- Define author's picture -->
<header id="header" data-behavior="1">
<i id="btn-open-sidebar" class="fa fa-lg fa-bars"></i>
<div class="header-title">
<a class="header-title-link" href="/ ">记录学习中的点滴,努力打怪升级-MaLi</a>
</div>
<a class="header-right-picture "
href="#about">
<img class="header-picture" src="/assets/images/avatar.jpg" alt="Author's picture"/>
</a>
</header>
<!-- Define author's picture -->
<nav id="sidebar" data-behavior="1">
<div class="sidebar-container">
<div class="sidebar-profile">
<a href="/#about">
<img class="sidebar-profile-picture" src="/assets/images/avatar.jpg" alt="Author's picture"/>
</a>
<h4 class="sidebar-profile-name">Mali</h4>
<h5 class="sidebar-profile-bio"><p>Objective-C && Swift && Python && PHP’s Learner</p>
</h5>
</div>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/ "
>
<i class="sidebar-button-icon fa fa-lg fa-home"></i>
<span class="sidebar-button-desc">Home</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/all-categories"
>
<i class="sidebar-button-icon fa fa-lg fa-bookmark"></i>
<span class="sidebar-button-desc">Categories</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/all-tags"
>
<i class="sidebar-button-icon fa fa-lg fa-tags"></i>
<span class="sidebar-button-desc">Tags</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/all-archives"
>
<i class="sidebar-button-icon fa fa-lg fa-archive"></i>
<span class="sidebar-button-desc">Archives</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link open-algolia-search"
href="#search"
>
<i class="sidebar-button-icon fa fa-lg fa-search"></i>
<span class="sidebar-button-desc">Search</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="#about"
>
<i class="sidebar-button-icon fa fa-lg fa-question"></i>
<span class="sidebar-button-desc">About</span>
</a>
</li>
</ul>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link " href="https://github.com/maligh" target="_blank" rel="noopener">
<i class="sidebar-button-icon fa fa-lg fa-github"></i>
<span class="sidebar-button-desc">GitHub</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="http://www.jianshu.com/u/e5c4518a950d" target="_blank" rel="noopener">
<i class="sidebar-button-icon fa fa-lg fa-leanpub"></i>
<span class="sidebar-button-desc">JianShu</span>
</a>
</li>
</ul>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link " href="http://www.jianshu.com/u/e5c4518a950d" target="_blank" rel="noopener">
<i class="sidebar-button-icon fa fa-lg fa-rss"></i>
<span class="sidebar-button-desc">RSS</span>
</a>
</li>
</ul>
</div>
</nav>
<div id="main" data-behavior="1"
class="
hasCoverMetaIn
">
<section class="postShorten-group main-content-wrap">
<article class="postShorten postShorten--thumbnailimg-left" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2018/03/03/iOS开发中的11种锁以及性能对比/">
iOS开发中的11种锁以及性能对比
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2018-03-03T14:30:35+08:00">
Mar 03, 2018
</time>
<span>in </span>
<a class="category-link" href="/all-categories/Objective-C/">Objective-C</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>在平时开发中我们经常会使用多线程,多线程为我们带来了很大便利,也提高了程序的执行效率,但同时也带来了<code>Data race</code>。
<a href="/2018/03/03/iOS开发中的11种锁以及性能对比/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2018/03/03/iOS开发中的11种锁以及性能对比/">
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="http://upload-images.jianshu.io/upload_images/1457495-08155377a6b6423c.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-left" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2018/02/04/提升iOS开发效率的一些keys/">
提升iOS开发效率的一些keys
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2018-02-04T17:20:06+08:00">
Feb 04, 2018
</time>
<span>in </span>
<a class="category-link" href="/all-categories/Objective-C/">Objective-C</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>首先题目写的有点大,这篇文章只是分享一下我平时用到的一些快捷键和习惯,希望能对大家平时的开发效率有所帮助。
<a href="/2018/02/04/提升iOS开发效率的一些keys/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2018/02/04/提升iOS开发效率的一些keys/">
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="http://upload-images.jianshu.io/upload_images/1457495-082a6ea037b27c99.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-left" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2017/12/31/2017年终总结/">
2017年终总结
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2017-12-31T22:31:18+08:00">
Dec 31, 2017
</time>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>转眼2017年走到了尾声,之前很少有写<code>年终总结</code>,如今已到了奔三的年纪,肩上的责任也越来越‘丰富’,每年做个总结,尽量避免每年‘瞎忙’吧。
<a href="/2017/12/31/2017年终总结/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2017/12/31/2017年终总结/">
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="http://upload-images.jianshu.io/upload_images/1457495-7dd518bf11850849.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-left" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2017/10/18/iOS设计模式四部曲三-行为型模式内附Demo/">
iOS设计模式四部曲三:行为型模式内附Demo
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2017-10-18T00:51:05+08:00">
Oct 18, 2017
</time>
<span>in </span>
<a class="category-link" href="/all-categories/设计模式/">设计模式</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p> 本篇是四部曲的第三篇,第一篇请点这里<a href="http://www.jianshu.com/p/55f0e3b30e9c" target="_blank" rel="external">iOS设计模式四部曲(一):创建型模式</a>,第二篇请点击这里<a href="http://www.jianshu.com/p/8ae41a48021b" target="_blank" rel="external">iOS设计模式四部曲(二):结构型模式</a>。
<a href="/2017/10/18/iOS设计模式四部曲三-行为型模式内附Demo/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2017/10/18/iOS设计模式四部曲三-行为型模式内附Demo/">
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="http://upload-images.jianshu.io/upload_images/1457495-2239f396849b8fc9.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-left" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2017/09/05/iOS设计模式四部曲二-结构型模式内附Demo/">
iOS设计模式四部曲二:结构型模式内附Demo
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2017-09-05T01:03:39+08:00">
Sep 05, 2017
</time>
<span>in </span>
<a class="category-link" href="/all-categories/设计模式/">设计模式</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p> 本篇是四部曲的第二篇,第一篇请点这里<a href="http://www.jianshu.com/p/55f0e3b30e9c" target="_blank" rel="external">iOS设计模式四部曲(一):创建型模式 内附Demo</a>,关于设计模式强烈推荐图书《Head First设计模式》以及《研磨设计模式》
<a href="/2017/09/05/iOS设计模式四部曲二-结构型模式内附Demo/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2017/09/05/iOS设计模式四部曲二-结构型模式内附Demo/">
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="http://upload-images.jianshu.io/upload_images/1457495-9bef37686fbfa917.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-left" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2017/08/22/iOS设计模式四部曲一创建型模式内附Demo/">
iOS设计模式四部曲一创建型模式内附Demo
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2017-08-22T01:18:45+08:00">
Aug 22, 2017
</time>
<span>in </span>
<a class="category-link" href="/all-categories/设计模式/">设计模式</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p> 最近刚重温完经典书籍<a href="http://www.jianshu.com/p/862b064e82e0" target="_blank" rel="external">《EffectiveObjective-C2.0编写高质量iOS与OSX代码的52个有效方法》</a>,接下来准备把设计模式扫扫盲
<a href="/2017/08/22/iOS设计模式四部曲一创建型模式内附Demo/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2017/08/22/iOS设计模式四部曲一创建型模式内附Demo/">
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="http://upload-images.jianshu.io/upload_images/1457495-b27a7821529beb5d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-left" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2017/08/06/重温《EffectiveObjective-C2-0编写高质量iOS与OSX代码的52个有效方法》/">
重温《EffectiveObjective-C2.0编写高质量iOS与OSX代码的52个有效方法》
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2017-08-06T01:06:36+08:00">
Aug 06, 2017
</time>
<span>in </span>
<a class="category-link" href="/all-categories/Objective-C/">Objective-C</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>最近在重温这本OC经典之作《Effective Objective-C 2.0编写高质量iOS与OS X代码的52个有效方法》,这篇文章算是重温之后的产物吧
<a href="/2017/08/06/重温《EffectiveObjective-C2-0编写高质量iOS与OSX代码的52个有效方法》/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2017/08/06/重温《EffectiveObjective-C2-0编写高质量iOS与OSX代码的52个有效方法》/">
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="http://upload-images.jianshu.io/upload_images/1457495-debf9e0c37687e51.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-left" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2017/07/30/iOS理解Objective-C中消息转发机制附Demo/">
iOS理解Objective-C中消息转发机制附Demo
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2017-07-30T15:35:00+08:00">
Jul 30, 2017
</time>
<span>in </span>
<a class="category-link" href="/all-categories/Objective-C/">Objective-C</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>最近在重温Effective Objective-C 2.0,这篇文章属于重温的产物吧,本文会通过demo来讲解OC中的消息转发机制</p>
<a href="/2017/07/30/iOS理解Objective-C中消息转发机制附Demo/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2017/07/30/iOS理解Objective-C中消息转发机制附Demo/">
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="http://upload-images.jianshu.io/upload_images/1457495-ade801c636fc86fc.jpg"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-left" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2017/07/04/Objective-C编程规范以及建议/">
Objective-C编程规范以及建议
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2017-07-04T23:36:51+08:00">
Jul 04, 2017
</time>
<span>in </span>
<a class="category-link" href="/all-categories/Objective-C/">Objective-C</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>本文记录一下Objective-C编程规范以及一些建议,可能后续会有些修改和补充,至于初衷是最近接手的项目中代码”有些”凌乱,所以整理了一篇,有一些来自网上,有一些是我平时的代码风格的吧~<br>
<a href="/2017/07/04/Objective-C编程规范以及建议/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2017/07/04/Objective-C编程规范以及建议/">
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="http://upload-images.jianshu.io/upload_images/1457495-ad0b17b8f89cc097.jpg"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-left" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2016/04/30/post/">
iOS常量(const)、enum、宏(#define)的使用场景及区别
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2016-04-30T02:37:54+08:00">
Apr 30, 2016
</time>
<span>in </span>
<a class="category-link" href="/all-categories/Objective-C/">Objective-C</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>前言:本文主要梳理iOS中如何使用常量、enum、宏,以及各自的使用场景。<br>
<a href="/2016/04/30/post/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2016/04/30/post/">
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="http://upload-images.jianshu.io/upload_images/1457495-df0b95375604d34b.jpg"/>
</div>
</a>
</article>
<div class="pagination-bar">
<ul class="pagination">
<li class="pagination-number">page 1 of 1</li>
</ul>
</div>
</section>
<footer id="footer" class="main-content-wrap">
<span class="copyrights">
Copyrights © 2018 Mali. All Rights Reserved.
</span>
</footer>
</div>
</div>
<div id="about">
<div id="about-card">
<div id="about-btn-close">
<i class="fa fa-remove"></i>
</div>
<img id="about-card-picture" src="/assets/images/avatar.jpg" alt="Author's picture"/>
<h4 id="about-card-name">Mali</h4>
<div id="about-card-bio"><p>Objective-C && Swift && Python && PHP’s Learner</p>
</div>
<div id="about-card-job">
<i class="fa fa-briefcase"></i>
<br/>
<p>iOS Developer</p>
</div>
<div id="about-card-location">
<i class="fa fa-map-marker"></i>
<br/>
ShenZhen
</div>
</div>
</div>
<div id="algolia-search-modal" class="modal-container">
<div class="modal">
<div class="modal-header">
<span class="close-button"><i class="fa fa-close"></i></span>
<a href="https://algolia.com" target="_blank" rel="noopener" class="searchby-algolia text-color-light link-unstyled">
<span class="searchby-algolia-text text-color-light text-small">by</span>
<img class="searchby-algolia-logo" src="https://www.algolia.com/static_assets/images/press/downloads/algolia-light.svg">
</a>
<i class="search-icon fa fa-search"></i>
<form id="algolia-search-form">
<input type="text" id="algolia-search-input" name="search"
class="form-control input--large search-input" placeholder="Search "
/>
</form>
</div>
<div class="modal-body">
<div class="no-result text-color-light text-center">no post found</div>
<div class="results">
<div class="media">
<div class="media-left">
<a class="link-unstyled" href="http://superma.me/2016/04/30/post/">
<img class="media-image" src="http://upload-images.jianshu.io/upload_images/1457495-df0b95375604d34b.jpg" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a class="link-unstyled" href="http://superma.me/2016/04/30/post/">
<h3 class="media-heading">iOS常量(const)、enum、宏(#define)的使用场景及区别</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Apr 30, 2016
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>前言:本文主要梳理iOS中如何使用常量、enum、宏,以及各自的使用场景。<br></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a class="link-unstyled" href="http://superma.me/2017/07/04/Objective-C编程规范以及建议/">
<img class="media-image" src="http://upload-images.jianshu.io/upload_images/1457495-ad0b17b8f89cc097.jpg" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a class="link-unstyled" href="http://superma.me/2017/07/04/Objective-C编程规范以及建议/">
<h3 class="media-heading">Objective-C编程规范以及建议</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Jul 4, 2017
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>本文记录一下Objective-C编程规范以及一些建议,可能后续会有些修改和补充,至于初衷是最近接手的项目中代码”有些”凌乱,所以整理了一篇,有一些来自网上,有一些是我平时的代码风格的吧~<br></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a class="link-unstyled" href="http://superma.me/2017/07/30/iOS理解Objective-C中消息转发机制附Demo/">
<img class="media-image" src="http://upload-images.jianshu.io/upload_images/1457495-ade801c636fc86fc.jpg" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a class="link-unstyled" href="http://superma.me/2017/07/30/iOS理解Objective-C中消息转发机制附Demo/">
<h3 class="media-heading">iOS理解Objective-C中消息转发机制附Demo</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Jul 30, 2017
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>最近在重温Effective Objective-C 2.0,这篇文章属于重温的产物吧,本文会通过demo来讲解OC中的消息转发机制</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a class="link-unstyled" href="http://superma.me/2017/08/06/重温《EffectiveObjective-C2-0编写高质量iOS与OSX代码的52个有效方法》/">
<img class="media-image" src="http://upload-images.jianshu.io/upload_images/1457495-debf9e0c37687e51.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a class="link-unstyled" href="http://superma.me/2017/08/06/重温《EffectiveObjective-C2-0编写高质量iOS与OSX代码的52个有效方法》/">
<h3 class="media-heading">重温《EffectiveObjective-C2.0编写高质量iOS与OSX代码的52个有效方法》</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Aug 6, 2017
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>最近在重温这本OC经典之作《Effective Objective-C 2.0编写高质量iOS与OS X代码的52个有效方法》,这篇文章算是重温之后的产物吧</div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a class="link-unstyled" href="http://superma.me/2017/08/22/iOS设计模式四部曲一创建型模式内附Demo/">
<img class="media-image" src="http://upload-images.jianshu.io/upload_images/1457495-b27a7821529beb5d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a class="link-unstyled" href="http://superma.me/2017/08/22/iOS设计模式四部曲一创建型模式内附Demo/">
<h3 class="media-heading">iOS设计模式四部曲一创建型模式内附Demo</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Aug 22, 2017
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p> 最近刚重温完经典书籍<a href="http://www.jianshu.com/p/862b064e82e0" target="_blank" rel="external">《EffectiveObjective-C2.0编写高质量iOS与OSX代码的52个有效方法》</a>,接下来准备把设计模式扫扫盲</div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a class="link-unstyled" href="http://superma.me/2017/09/05/iOS设计模式四部曲二-结构型模式内附Demo/">
<img class="media-image" src="http://upload-images.jianshu.io/upload_images/1457495-9bef37686fbfa917.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a class="link-unstyled" href="http://superma.me/2017/09/05/iOS设计模式四部曲二-结构型模式内附Demo/">
<h3 class="media-heading">iOS设计模式四部曲二:结构型模式内附Demo</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Sep 5, 2017
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p> 本篇是四部曲的第二篇,第一篇请点这里<a href="http://www.jianshu.com/p/55f0e3b30e9c" target="_blank" rel="external">iOS设计模式四部曲(一):创建型模式 内附Demo</a>,关于设计模式强烈推荐图书《Head First设计模式》以及《研磨设计模式》</div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a class="link-unstyled" href="http://superma.me/2017/10/18/iOS设计模式四部曲三-行为型模式内附Demo/">
<img class="media-image" src="http://upload-images.jianshu.io/upload_images/1457495-2239f396849b8fc9.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a class="link-unstyled" href="http://superma.me/2017/10/18/iOS设计模式四部曲三-行为型模式内附Demo/">
<h3 class="media-heading">iOS设计模式四部曲三:行为型模式内附Demo</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Oct 18, 2017
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p> 本篇是四部曲的第三篇,第一篇请点这里<a href="http://www.jianshu.com/p/55f0e3b30e9c" target="_blank" rel="external">iOS设计模式四部曲(一):创建型模式</a>,第二篇请点击这里<a href="http://www.jianshu.com/p/8ae41a48021b" target="_blank" rel="external">iOS设计模式四部曲(二):结构型模式</a>。</div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a class="link-unstyled" href="http://superma.me/2017/12/31/2017年终总结/">
<img class="media-image" src="http://upload-images.jianshu.io/upload_images/1457495-7dd518bf11850849.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a class="link-unstyled" href="http://superma.me/2017/12/31/2017年终总结/">
<h3 class="media-heading">2017年终总结</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Dec 31, 2017
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>转眼2017年走到了尾声,之前很少有写<code>年终总结</code>,如今已到了奔三的年纪,肩上的责任也越来越‘丰富’,每年做个总结,尽量避免每年‘瞎忙’吧。</div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a class="link-unstyled" href="http://superma.me/2018/02/04/提升iOS开发效率的一些keys/">
<img class="media-image" src="http://upload-images.jianshu.io/upload_images/1457495-082a6ea037b27c99.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a class="link-unstyled" href="http://superma.me/2018/02/04/提升iOS开发效率的一些keys/">
<h3 class="media-heading">提升iOS开发效率的一些keys</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Feb 4, 2018