-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1042 lines (600 loc) · 38.7 KB
/
index.html
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="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="baidu-site-verification" content="HDUB7OSvsD" />
<title>ran blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=no">
<meta name="author" content="ran">
<meta name="description">
<meta property="og:type" content="website">
<meta property="og:title" content="ran blog">
<meta property="og:url" content="http://LBingRun.github.io/index.html">
<meta property="og:site_name" content="ran blog">
<meta property="og:description">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="ran blog">
<meta name="twitter:description">
<link rel="alternative" href="/sitemap.xml" title="ran blog" type="application/atom+xml">
<link rel="icon" href="/img/fiy.ico">
<link rel="apple-touch-icon" href="/img/logo.png">
<link rel="apple-touch-icon-precomposed" href="/img/logo.png">
<link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="/plan/plan.css" type="text/css">
<link rel="stylesheet" href="/high/ht.css" type="text/css">
<script type="text/javascript" src="http://api.hitokoto.us/rand?encode=js&charset=utf-8"></script>
</head>
<body>
<header>
<a title="亲,点我放松一下吧~!(单击启动,双击停止)" id="hig" style="float:right;" href="javascript:void(0);" onclick="hig();" ondblclick="location.reload(true);">^_^嗨一下</a>
<div id="wind" style="display:none">
<div id="plane" class="front">
<textarea class="message">感谢您来访ran之家,欢迎常来。----ran^v^</textarea>
<button class="send"> 起飞 </button> <br/>
<div id="plane_bottom">
<a href="javascript:;" id="plane_close"> X </a>
</div>
</div>
<div id="wind_container" class="beginning">
<div id="left-wing">
<div class="top_left curvable"> </div>
<div class="bottom_left curvable"> </div>
<div class="wing wing1"></div>
<div class="wing wing2"></div>
</div>
<div id="right-wing">
<div class="top_right curvable"> </div>
<div class="bottom_right curvable"> </div>
<div class="wing wing3"></div>
<div class="wing wing4"></div>
</div>
</div>
</div>
<div>
<div id="imglogo">
<a href="javascript:void(0);"><img src="/img/logo.png" alt="ran blog" title="ran blog"/></a>
</div>
<div id="textlogo">
<h1 class="site-name"><a href="/" title="ran blog">ran blog</a></h1>
<h2 class="blog-motto"><script>hitokoto()</script></h2>
</div>
<div class="navbar"><a class="navbutton navmobile" href="#" title="菜单">
</a></div>
<nav class="animated">
<ul>
<ul>
<li><a href="/">主页</a></li>
<li><a href="/archives">归档</a></li>
<li><a href="/laboratory">实验室</a></li>
<li><a href="/about">关于</a></li>
<li>
<form class="search" action="http://zhannei.baidu.com/cse/search" target="_blank">
<label>Search</label>
<input name="s" type="hidden" value= 11705943999323333673 >
<input type="text" name="q" size="30" placeholder="搜索"><br>
</form>
</li>
</ul>
</nav>
</div>
</header>
<div id="container">
<div id="main">
<article class="post-expand post" itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2017/01/05/2017-1-05-CocoapodsCreatpodspec/" title="Cocoapods上创建专属的podspec" itemprop="url">Cocoapods上创建专属的podspec</a>
</h1>
<p class="article-author">By
<a href="http://LBingRun.github.io/about" title="ran" target="_blank" itemprop="author">ran</a>
<p class="article-time">
<time datetime="2017-01-05T12:23:10.000Z" itemprop="datePublished"> 发表于 Jan 5 2017</time>
</p>
</header>
<div class="article-content">
<h3 id="背景">背景</h3><p>目前而言,CocoaPods因该是我们项目第三方依赖库管理的不二选择了。什么?你还没用过CocoaPods!信不信打哭你!认真脸,可以这么说,我们项目所需要用到的主流第三方库在CocoaPods上都能找到,同时我们也可以用它来方便的管理和更新我们项目引入的第三方库。这些功能是不是已经很棒了,对于单人开发来说,其实已经够了。毕竟万事都有个然后嘛,是不。团队开发的时候,你就会发现对于项目开发而言如果没有一个很好的管理方法,开发者的项目代码就显得冗余了些,其实很多的时候,我们都是专注于自己的那块业务开发,对于团队的其它代码并不关心,加之近年组件化编程的思想也越来越流行。podspec貌似是一个不错的选择方案。艾艾~不好意思废话说得有点多。</p>
<h3 id="podspec_是什么?">podspec 是什么?</h3><p>这样说吧,其实它就是一个Git仓库,专门存放你组件代码的地方,和你平时把代码提交到自己的git或者svn没什么两样,只不过它的remote端在GitHub、CODING、Bitbucket…上而已</p>
<h3 id="创建_Spec_Repo">创建 Spec Repo</h3><p>第一步 我们需要创建一个 Git仓库<br> 前几天去CODING上注册了个账户,所以就用CODING来玩玩。当然GitHub、CODING、Bitbucket上步骤都是相似的所以大家不要惊慌。<br> <figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line"><span class="comment"># pod repo add [Private Repo Name] [CODING HTTPS clone URL]</span></span><br><span class="line">$ pod repo add LBSpceRepoTest [email protected]:Ran_/LBSpceRepoTest.git</span><br></pre></td></tr></table></figure></p>
<p class="article-more-link">
<a href="/2017/01/05/2017-1-05-CocoapodsCreatpodspec/#more">Read More</a>
</p>
</div>
<footer class="article-footer clearfix">
<div class="article-catetags">
<div class="article-categories">
<span></span>
<a class="article-category-link" href="/categories/IOS/">IOS</a>
</div>
<div class="article-tags">
<span></span> <a href="/tags/IOS/">IOS</a><a href="/tags/工具/">工具</a>
</div>
</div>
<div class="comments-count">
<span></span>
<a href="http://LBingRun.github.io/2017/01/05/2017-1-05-CocoapodsCreatpodspec/#comments" class="ds-thread-count comments-count-link" data-thread-key="2017/01/05/2017-1-05-CocoapodsCreatpodspec/" data-count-type="comments"> </a>
</div>
</footer>
</article>
<article class="post-expand post" itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2015/09/03/2015-9-03-IOSAchive/" title="Ios 7.1 以上系统企业级发布解决方案" itemprop="url">Ios 7.1 以上系统企业级发布解决方案</a>
</h1>
<p class="article-author">By
<a href="http://LBingRun.github.io/about" title="ran" target="_blank" itemprop="author">ran</a>
<p class="article-time">
<time datetime="2015-09-03T14:53:14.000Z" itemprop="datePublished"> 发表于 Sep 3 2015</time>
</p>
</header>
<div class="article-content">
<h3 id="鸣谢">鸣谢</h3><p>这里特别鸣谢黄灿师兄,感谢他为我们整理《Ios 7.1 以上系统企业级发布解决方案》文章,现在,我把它放到博客上面,希望对IOS开发的仁兄有帮助。</p>
<h3 id="背景">背景</h3><p>此前 iOS7.1 正式发布。此次发布带来了一个巨大变化,对于所有 iOS 企业开发人员来<br>说是个巨大的噩耗,因为原来的 HTTP 应用发布方式不再有效。<br>这个变化没有得到苹果官方的说明。尽管这样的事情并不是第一次发生,但是我们在 iOS7.1<br>上测试的结果表明,苹果再次对开发者们下“黑手”了。<br>通过 Xcode Organizer 查看 7.1 设备上的控制台,我们得到了如下信息:<br>Could not load non-https manifest URL: <a href="http://www.somedomain.com/manifest.plist">http://www.somedomain.com/manifest.plist</a><br>苹果已经在 7.1 中禁止了“非 HTTPS”方式的 manifest URL。 你得将上面的 URL 改成<br><a href="https://www.somedomain.com/manifest.plist">https://www.somedomain.com/manifest.plist</a> 才行。<br>
<p class="article-more-link">
<a href="/2015/09/03/2015-9-03-IOSAchive/#more">Read More</a>
</p>
</div>
<footer class="article-footer clearfix">
<div class="article-catetags">
<div class="article-categories">
<span></span>
<a class="article-category-link" href="/categories/IOS/">IOS</a>
</div>
<div class="article-tags">
<span></span> <a href="/tags/IOS/">IOS</a><a href="/tags/企业发布/">企业发布</a>
</div>
</div>
<div class="comments-count">
<span></span>
<a href="http://LBingRun.github.io/2015/09/03/2015-9-03-IOSAchive/#comments" class="ds-thread-count comments-count-link" data-thread-key="2015/09/03/2015-9-03-IOSAchive/" data-count-type="comments"> </a>
</div>
</footer>
</article>
<article class="post-expand post" itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2015/09/01/2015-9-01-KVC-KVO/" title="KVO与KVC" itemprop="url">KVO与KVC</a>
</h1>
<p class="article-author">By
<a href="http://LBingRun.github.io/about" title="ran" target="_blank" itemprop="author">ran</a>
<p class="article-time">
<time datetime="2015-09-01T14:53:14.000Z" itemprop="datePublished"> 发表于 Sep 1 2015</time>
</p>
</header>
<div class="article-content">
<h3 id="简介">简介</h3><p> KVC(Key–Value Coding,键值编码)KVC提供了一种在运行时而非编译时动态访问对象属性与成员变量的方式,也就是说,我们可以用字符串的内容作为属性名称或者成员变量名称进行访问。这种特性有些类似于其他高级编程语言中的反射(比如java)。简单的说它是一种可以直接通过字符串的名字(key)来访问类属性的机制。而不是通过调用Setter、Getter方法访问。</p>
<p> KVO(Key-Value Observing,键值观察)KVO提供一种机制,当指定的对象的属性被修改后,则对象就会接受到通知。简单的说就是每次指定的被观察的对象的属性被修改后,KVO就会自动通知相应的观察者了。</p>
<p> 今天看了下KVC与KVO的相关东西,突然有了一种醍醐灌顶的感觉,以前没用过,但是今天才发现,这是个好东西啊,以前要是我们的界面上面有关于UI的变动,我们必须要对界面进行刷新后才能看到效果,然而每次的刷新必定会带来很大的内存开销,特别是我们使用UIViewTable的时候,要是数据变更多了,那么我们就需要重新处理变更所带来的界面变化,那么我们又会重新去加载cell,要是cell达到了几百的数量级,那么我么的内存实际上是需要很大的开销的,有了KVC、KVO这个问题就迎刃而解了,我们可以在可能需要变化的属性上面注册KVO,当我们的界面发生改变的时候,直接可以改变属性值,而不需要我们再次使用刷新的方式来更新界面了。</p>
<p> 在说使用KVO的时候,我想先说说KVC,因为我们要想使我们的KVO得到有效的使用,我们的对象必须是建立在支持KVC的基础之上的,先不扯淡了,我们直接进入正题吧。<br>
<p class="article-more-link">
<a href="/2015/09/01/2015-9-01-KVC-KVO/#more">Read More</a>
</p>
</div>
<footer class="article-footer clearfix">
<div class="article-catetags">
<div class="article-categories">
<span></span>
<a class="article-category-link" href="/categories/IOS/">IOS</a>
</div>
<div class="article-tags">
<span></span> <a href="/tags/IOS/">IOS</a><a href="/tags/KVC/">KVC</a><a href="/tags/KVO/">KVO</a>
</div>
</div>
<div class="comments-count">
<span></span>
<a href="http://LBingRun.github.io/2015/09/01/2015-9-01-KVC-KVO/#comments" class="ds-thread-count comments-count-link" data-thread-key="2015/09/01/2015-9-01-KVC-KVO/" data-count-type="comments"> </a>
</div>
</footer>
</article>
<article class="post-expand post" itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2015/08/30/2015-8-30-NSOperation/" title="多线程之——浅谈NSOperation和NSOperationQueue" itemprop="url">多线程之——浅谈NSOperation和NSOperationQueue</a>
</h1>
<p class="article-author">By
<a href="http://LBingRun.github.io/about" title="ran" target="_blank" itemprop="author">ran</a>
<p class="article-time">
<time datetime="2015-08-30T14:53:14.000Z" itemprop="datePublished"> 发表于 Aug 30 2015</time>
</p>
</header>
<div class="article-content">
<h3 id="简介">简介</h3><p> iOS有三种多线程编程的技术分别是NSThread 、Cocoa NSOperation、GCD,抽象度层次是从低到高的,抽象度越高的使用越简单,也是Apple最推荐使用的。在前面呢我对GCD和NSThread的基本使用做过一些简单的总结,大家有空可以看看。</p>
<p> NSOperation和NSOperationQueue其实也是IOS多线程推荐使用的方法之一,很多网络框架底层的实现原理也都是通过这种方式实现的。但是自己使用的话我还是推荐使用GCD或者NSThread之一,不过也不一定,开发者也可根据自己的使用习惯自己选择用什么方式来实现。因为其实三种方式都是比较简单的,但是就我个人而言,GCD、NSThread是我比较喜欢使用的。在这里我先对NSOperation的使用方式做一些简单的总结,以后用到了再来完善这篇文章。<br>
<p class="article-more-link">
<a href="/2015/08/30/2015-8-30-NSOperation/#more">Read More</a>
</p>
</div>
<footer class="article-footer clearfix">
<div class="article-catetags">
<div class="article-categories">
<span></span>
<a class="article-category-link" href="/categories/IOS/">IOS</a>
</div>
<div class="article-tags">
<span></span> <a href="/tags/IOS/">IOS</a><a href="/tags/NSOperation/">NSOperation</a><a href="/tags/NSOperationQueue/">NSOperationQueue</a>
</div>
</div>
<div class="comments-count">
<span></span>
<a href="http://LBingRun.github.io/2015/08/30/2015-8-30-NSOperation/#comments" class="ds-thread-count comments-count-link" data-thread-key="2015/08/30/2015-8-30-NSOperation/" data-count-type="comments"> </a>
</div>
</footer>
</article>
<article class="post-expand post" itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2015/08/29/2015-8-29-NSThread/" title="多线程之——NSThread" itemprop="url">多线程之——NSThread</a>
</h1>
<p class="article-author">By
<a href="http://LBingRun.github.io/about" title="ran" target="_blank" itemprop="author">ran</a>
<p class="article-time">
<time datetime="2015-08-29T14:53:14.000Z" itemprop="datePublished"> 发表于 Aug 29 2015</time>
</p>
</header>
<div class="article-content">
<h3 id="简介">简介</h3><p> iOS有三种多线程编程的技术分别是NSThread 、Cocoa NSOperation、GCD,抽象度层次是从低到高的,抽象度越高的使用越简单,也是Apple最推荐使用的。在前面呢我对GCD的基本使用做过一些简单的总结,大家有空可以看看。这里呢我主要对NSThread的一些基本的使用呢做一些基本的概括。主要是对自己进行一些总结,也希望对大家使用NSThread的开发者有用。</p>
<p> NSThread相比其他两个的用法呢,最大的差别就是我们要对我们做的事情负责,简单来说就是我们用了它,就得需要自己管理thread的生命周期,线程之间的同步也需要自己手动添加代码,其实呢也没那么麻烦的哈,不要被吓到了。从事过java开发的人来说呢thread就更好理解了,因为他们是完全类似的。是不是已经迫不及待了,那我们就进入正题吧。</p>
<h3 id="启动方式">启动方式</h3>
<p class="article-more-link">
<a href="/2015/08/29/2015-8-29-NSThread/#more">Read More</a>
</p>
</div>
<footer class="article-footer clearfix">
<div class="article-catetags">
<div class="article-categories">
<span></span>
<a class="article-category-link" href="/categories/IOS/">IOS</a>
</div>
<div class="article-tags">
<span></span> <a href="/tags/IOS/">IOS</a><a href="/tags/NSThread/">NSThread</a>
</div>
</div>
<div class="comments-count">
<span></span>
<a href="http://LBingRun.github.io/2015/08/29/2015-8-29-NSThread/#comments" class="ds-thread-count comments-count-link" data-thread-key="2015/08/29/2015-8-29-NSThread/" data-count-type="comments"> </a>
</div>
</footer>
</article>
<article class="post-expand post" itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2015/08/28/2015-8-28-GCD/" title="多线程之——GCD(Grand Central Dispatch)" itemprop="url">多线程之——GCD(Grand Central Dispatch)</a>
</h1>
<p class="article-author">By
<a href="http://LBingRun.github.io/about" title="ran" target="_blank" itemprop="author">ran</a>
<p class="article-time">
<time datetime="2015-08-28T14:53:14.000Z" itemprop="datePublished"> 发表于 Aug 28 2015</time>
</p>
</header>
<div class="article-content">
<h3 id="GCD介绍">GCD介绍</h3><p>Grand Central Dispatch 简称(GCD)是苹果公司开发的技术,以优化的应用程序支持多核心处理器和其他的对称多处理系统的系统。这建立在任务并行执行的线程池模式的基础上的。它首次发布在Mac OS X 10.6 ,iOS 4及以上也可用。简单的说它提供了IOS多核编程的解决方法,注意她是纯C语言,并且提供了非常多强大的函数,它是基于函数使用的,而不是我们面向对象里边说的方法。</p>
<h3 id="原理">原理</h3><p> GCD的工作原理是:让程序平行排队的特定任务,根据可用的处理资源,安排他们在任何可用的处理器核心上执行任务。一个任务可以是一个函数(function)或者是一个block。GCD的底层依然是用线程实现,不过这样可以让程序员不用关注实现的细节。GCD中的FIFO队列称为dispatchqueue,它可以保证先进来的任务先得到执行,即操作系统里边的先进先出,后进后出。<br>
<p class="article-more-link">
<a href="/2015/08/28/2015-8-28-GCD/#more">Read More</a>
</p>
</div>
<footer class="article-footer clearfix">
<div class="article-catetags">
<div class="article-categories">
<span></span>
<a class="article-category-link" href="/categories/IOS/">IOS</a>
</div>
<div class="article-tags">
<span></span> <a href="/tags/GCD/">GCD</a><a href="/tags/IOS/">IOS</a>
</div>
</div>
<div class="comments-count">
<span></span>
<a href="http://LBingRun.github.io/2015/08/28/2015-8-28-GCD/#comments" class="ds-thread-count comments-count-link" data-thread-key="2015/08/28/2015-8-28-GCD/" data-count-type="comments"> </a>
</div>
</footer>
</article>
<article class="post-expand post" itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2015/08/27/2015-8-27-UITableViewControllerReuse/" title="UITableViewCell的重用机制" itemprop="url">UITableViewCell的重用机制</a>
</h1>
<p class="article-author">By
<a href="http://LBingRun.github.io/about" title="ran" target="_blank" itemprop="author">ran</a>
<p class="article-time">
<time datetime="2015-08-27T14:53:14.000Z" itemprop="datePublished"> 发表于 Aug 27 2015</time>
</p>
</header>
<div class="article-content">
<h3 id="简介">简介</h3><p> UITableView相信对于诸多的从事IOS开发的人来说已经是非常熟悉的了,可以说iPhone很多应用都有使用,应该来说是一个比较频繁的组件了,对于它的很多使用技巧,我们今天就不做讨论了,这里主要说的是UITableViewCell的重用机制。</p>
<p> 对于一个好的应用开发来说,系统的架构是很重要的,必须清晰明了,各部分设计必须分工明确。比如现在很流行的MVC系统架构。把视图、模型、控制都分割开来。其实UITableViewCell设计思想也是这样的,开发者必须明白,要想达到一个很好的cell复用效果,那么我们就必须明白,把cell和数据分割开来。要是我们明白这点,那么我们在进行cell复用的时候思路就很清晰了。并且可以规避掉我们初学者看起来很无厘头的bug。比如在进行上下滑动的时候,cell重复显示了以前的,这并不是我们想看到的。</p>
<h3 id="原理">原理</h3><p> 首先我们先看段代码<br>
<p class="article-more-link">
<a href="/2015/08/27/2015-8-27-UITableViewControllerReuse/#more">Read More</a>
</p>
</div>
<footer class="article-footer clearfix">
<div class="article-catetags">
<div class="article-categories">
<span></span>
<a class="article-category-link" href="/categories/IOS/">IOS</a>
</div>
<div class="article-tags">
<span></span> <a href="/tags/IOS/">IOS</a><a href="/tags/UITableViewCell/">UITableViewCell</a>
</div>
</div>
<div class="comments-count">
<span></span>
<a href="http://LBingRun.github.io/2015/08/27/2015-8-27-UITableViewControllerReuse/#comments" class="ds-thread-count comments-count-link" data-thread-key="2015/08/27/2015-8-27-UITableViewControllerReuse/" data-count-type="comments"> </a>
</div>
</footer>
</article>
<article class="post-expand post" itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2015/07/27/2015-7-27-IOSControllerLoad/" title="ViewController中LoadView,ViewDidLoad,ViewDidUnload...的调用次序及调用方法的总结" itemprop="url">ViewController中LoadView,ViewDidLoad,ViewDidUnload...的调用次序及调用方法的总结</a>
</h1>
<p class="article-author">By
<a href="http://LBingRun.github.io/about" title="ran" target="_blank" itemprop="author">ran</a>
<p class="article-time">
<time datetime="2015-07-27T14:53:14.000Z" itemprop="datePublished"> 发表于 Jul 27 2015</time>
</p>
</header>
<div class="article-content">
<h3 id=""> </h3><p> 我们在进行IOS手机开发的时候,理解原生方法的执行次序,以及执行原理是非常重要的,我们在开发的过程当中,有的时候就是对IOS执行方法的次序及机制不够了解,进而容易犯一些比较低级的错误,而这些错误我们是完全可以轻易避免的。这篇文章是我对UIViewController里边的几个方法的调用次序做一个总结,希望以后对自己或者浏览者有用。</p>
<h3 id="一、LoadView">一、LoadView</h3><p>简单来说loadView方法是用来负责创建UIViewController的view的,也就是说当UIViewController的nib为nil的时候调用。它有两种调用方式,一种是我们重载了此方法,另一种是如果没重载调用[super loadView]</p>
<p>下面我们说说没重载的情况,也就是[super loadView]会怎样做创建view的事情<br>1.它会先去查找与UIViewController相关联的xib文件,通过加载xib文件来创建UIViewController的view,如果在初始化UIViewController指定了xib文件名,就会根据传入的xib文件名加载对应的xib文件 ,方法为<br>
<p class="article-more-link">
<a href="/2015/07/27/2015-7-27-IOSControllerLoad/#more">Read More</a>
</p>
</div>
<footer class="article-footer clearfix">
<div class="article-catetags">
<div class="article-categories">
<span></span>
<a class="article-category-link" href="/categories/IOS/">IOS</a>
</div>
<div class="article-tags">
<span></span> <a href="/tags/IOS/">IOS</a><a href="/tags/ViewController方法调用次序/">ViewController方法调用次序</a>
</div>
</div>
<div class="comments-count">
<span></span>
<a href="http://LBingRun.github.io/2015/07/27/2015-7-27-IOSControllerLoad/#comments" class="ds-thread-count comments-count-link" data-thread-key="2015/07/27/2015-7-27-IOSControllerLoad/" data-count-type="comments"> </a>
</div>
</footer>
</article>
<article class="post-expand post" itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2015/06/27/2015-6-27-tranfromScreen/" title="iOS强制屏幕旋转" itemprop="url">iOS强制屏幕旋转</a>
</h1>
<p class="article-author">By
<a href="http://LBingRun.github.io/about" title="ran" target="_blank" itemprop="author">ran</a>
<p class="article-time">
<time datetime="2015-06-27T14:53:14.000Z" itemprop="datePublished"> 发表于 Jun 27 2015</time>
</p>
</header>
<div class="article-content">
<h3 id="前言">前言</h3><p> 我们开发的手机应用,为了适应客户习惯,也为了提高客户体验,有时我们不得不在手机处于不同状态的时候使我们手机屏幕也跟着旋转,但是,有的时候特殊情况下我们需要将屏幕强制旋转,以达到我们想要的效果。这里根据自己的经验为大家介绍3种强制转换的方式。</p>
<h3 id="第一种">第一种</h3><p>在我们项目的初始化文件里(也就是Delegate文件)加上下边这个方法,当然这是一个全局设置,也就是说当我们设置了这个方法后对我们整个项目都会起作用。<br>
<p class="article-more-link">
<a href="/2015/06/27/2015-6-27-tranfromScreen/#more">Read More</a>
</p>
</div>
<footer class="article-footer clearfix">
<div class="article-catetags">
<div class="article-categories">
<span></span>
<a class="article-category-link" href="/categories/IOS/">IOS</a>
</div>
<div class="article-tags">
<span></span> <a href="/tags/IOS/">IOS</a><a href="/tags/转屏/">转屏</a>
</div>
</div>
<div class="comments-count">
<span></span>
<a href="http://LBingRun.github.io/2015/06/27/2015-6-27-tranfromScreen/#comments" class="ds-thread-count comments-count-link" data-thread-key="2015/06/27/2015-6-27-tranfromScreen/" data-count-type="comments"> </a>
</div>
</footer>
</article>
<article class="post-expand post" itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2015/05/21/2015-05-21-MyBatiesDemo1/" title="搭建简单的MyBaties框架" itemprop="url">搭建简单的MyBaties框架</a>
</h1>
<p class="article-author">By
<a href="http://LBingRun.github.io/about" title="ran" target="_blank" itemprop="author">ran</a>
<p class="article-time">
<time datetime="2015-05-21T08:05:12.000Z" itemprop="datePublished"> 发表于 May 21 2015</time>
</p>
</header>
<div class="article-content">
<p>什么是MyBatis?MyBatis是一个运用于持久层的数据操作框架。MyBatis是从iBatis升级而来。使用MyBatis提供的ORM机制,业务逻辑层实现人员操作的是JAVA对象,该层面与Hibernate机制中的相同。对于具体的数据库操作而言,Hibernate会自动生成SQL并执行,而MyBatis要求开发人员具体编写SQL语句。MyBatis在数据库移植性和SQL开发工作量上进行了让步,从而提升了系统设计的灵活性,扩展了其自由空间。</p>
<p>为什么需要MyBatis?系统的部分或全部数据来自现有数据库,出于安全性的考虑,只为开发团队提供几条Select SQL(或存储过程)以获取所需数据,具体的表结构不予公开。开发规范中要求,所有牵涉到业务逻辑部分的数据库操作,必须在数据库层由存储过程实现(对于金融行业而言,工商银行、中国银行和交通银行,都在开发规范中严格指定)。系统数据处理量巨大,性能要求极为苛刻,这通常意味着我们必须由经过高度优化的SQL语句(或存储过程)才能达到系统性能设计指标。</p>
<p class="article-more-link">
<a href="/2015/05/21/2015-05-21-MyBatiesDemo1/#more">Read More</a>
</p>
</div>
<footer class="article-footer clearfix">
<div class="article-catetags">
<div class="article-categories">
<span></span>
<a class="article-category-link" href="/categories/Framework/">Framework</a>
</div>
<div class="article-tags">
<span></span> <a href="/tags/MyBaties/">MyBaties</a>
</div>
</div>
<div class="comments-count">
<span></span>
<a href="http://LBingRun.github.io/2015/05/21/2015-05-21-MyBatiesDemo1/#comments" class="ds-thread-count comments-count-link" data-thread-key="2015/05/21/2015-05-21-MyBatiesDemo1/" data-count-type="comments"> </a>
</div>
</footer>
</article>
<nav id="page-nav" class="clearfix">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="extend next" rel="next" href="/page/2/">Next<span></span></a>
</nav>
</div>
<div class="openaside"><a class="navbutton" href="#" title="显示侧边栏"></a></div>
<div id="asidepart">
<div class="closeaside"><a class="closebutton" href="#" title="隐藏侧边栏"></a></div>
<aside class="clearfix">
<div class="categorieslist">
<p class="asidetitle">分类</p>
<ul>
<li><a href="/categories/Framework/" title="Framework">Framework<sup>5</sup></a></li>
<li><a href="/categories/IOS/" title="IOS">IOS<sup>9</sup></a></li>
<li><a href="/categories/java/" title="java">java<sup>1</sup></a></li>
<li><a href="/categories/software/" title="工具配置">工具配置<sup>2</sup></a></li>
<li><a href="/categories/技术实现/" title="技术实现">技术实现<sup>1</sup></a></li>
</ul>
</div>
<div class="tagslist">
<p class="asidetitle">标签</p>
<ul class="clearfix">
<li><a href="/tags/IOS/" title="IOS">IOS<sup>9</sup></a></li>
<li><a href="/tags/框架/" title="框架">框架<sup>4</sup></a></li>
<li><a href="/tags/spring/" title="spring">spring<sup>4</sup></a></li>
<li><a href="/tags/springMVC/" title="springMVC">springMVC<sup>3</sup></a></li>
<li><a href="/tags/软件配置/" title="软件配置">软件配置<sup>3</sup></a></li>
<li><a href="/tags/登陆/" title="登陆">登陆<sup>2</sup></a></li>
<li><a href="/tags/spring配置/" title="spring配置">spring配置<sup>2</sup></a></li>
<li><a href="/tags/bitnami/" title="bitnami">bitnami<sup>2</sup></a></li>
<li><a href="/tags/redmine/" title="redmine">redmine<sup>2</sup></a></li>
<li><a href="/tags/subversion/" title="subversion">subversion<sup>2</sup></a></li>
<li><a href="/tags/ViewController方法调用次序/" title="ViewController方法调用次序">ViewController方法调用次序<sup>1</sup></a></li>
<li><a href="/tags/转屏/" title="转屏">转屏<sup>1</sup></a></li>
<li><a href="/tags/canvas/" title="canvas">canvas<sup>1</sup></a></li>
<li><a href="/tags/斜切风格/" title="斜切风格">斜切风格<sup>1</sup></a></li>
<li><a href="/tags/MyBaties/" title="MyBaties">MyBaties<sup>1</sup></a></li>
<li><a href="/tags/KVC/" title="KVC">KVC<sup>1</sup></a></li>
<li><a href="/tags/工具/" title="工具">工具<sup>1</sup></a></li>
<li><a href="/tags/KVO/" title="KVO">KVO<sup>1</sup></a></li>
<li><a href="/tags/NSOperationQueue/" title="NSOperationQueue">NSOperationQueue<sup>1</sup></a></li>
<li><a href="/tags/springIOC/" title="springIOC">springIOC<sup>1</sup></a></li>
</ul>
</div>
<div class="tagcloudlist">
<p class="asidetitle">标签云</p>
<div class="tagcloudlist clearfix">
<a href="/tags/GCD/" style="font-size: 10px;">GCD</a><a href="/tags/IOS/" style="font-size: 20px;">IOS</a><a href="/tags/KVC/" style="font-size: 10px;">KVC</a><a href="/tags/KVO/" style="font-size: 10px;">KVO</a><a href="/tags/MyBaties/" style="font-size: 10px;">MyBaties</a><a href="/tags/NSOperation/" style="font-size: 10px;">NSOperation</a><a href="/tags/NSOperationQueue/" style="font-size: 10px;">NSOperationQueue</a><a href="/tags/NSThread/" style="font-size: 10px;">NSThread</a><a href="/tags/UITableViewCell/" style="font-size: 10px;">UITableViewCell</a><a href="/tags/ViewController方法调用次序/" style="font-size: 10px;">ViewController方法调用次序</a><a href="/tags/bitnami/" style="font-size: 12.5px;">bitnami</a><a href="/tags/canvas/" style="font-size: 10px;">canvas</a><a href="/tags/ehcache/" style="font-size: 10px;">ehcache</a><a href="/tags/redmine/" style="font-size: 12.5px;">redmine</a><a href="/tags/spring/" style="font-size: 17.5px;">spring</a><a href="/tags/springAOP/" style="font-size: 10px;">springAOP</a><a href="/tags/springIOC/" style="font-size: 10px;">springIOC</a><a href="/tags/springMVC/" style="font-size: 15px;">springMVC</a><a href="/tags/spring配置/" style="font-size: 12.5px;">spring配置</a><a href="/tags/subversion/" style="font-size: 12.5px;">subversion</a><a href="/tags/svn/" style="font-size: 10px;">svn</a><a href="/tags/tortoisesvn/" style="font-size: 10px;">tortoisesvn</a><a href="/tags/web前端/" style="font-size: 10px;">web前端</a><a href="/tags/xhay/" style="font-size: 10px;">xhay</a><a href="/tags/企业发布/" style="font-size: 10px;">企业发布</a><a href="/tags/工具/" style="font-size: 10px;">工具</a><a href="/tags/斜切风格/" style="font-size: 10px;">斜切风格</a><a href="/tags/框架/" style="font-size: 17.5px;">框架</a><a href="/tags/登陆/" style="font-size: 12.5px;">登陆</a><a href="/tags/缓存/" style="font-size: 10px;">缓存</a><a href="/tags/转屏/" style="font-size: 10px;">转屏</a><a href="/tags/软件配置/" style="font-size: 15px;">软件配置</a>
</div>
</div>
<div class="linkslist">
<p class="asidetitle">友情链接</p>
<ul>
<li>
<a href="http://www.xrpmoon.com/blog/" target="_blank" title=" Java与Ripple怎么玩?">鹏凌三千</a>
</li>
<li>
<a href="http://likai1024.com/" target="_blank" title=" 李凯的博客热爱开源文化">李凯的博客</a>
</li>
<li>
<a href="http://bininhere.github.io/" target="_blank" title=" 大牛的博客">BINBLOG</a>
</li>
</ul>
</div>
<div class="rsspart">
<a href="/sitemap.xml" target="_blank" title="rss">RSS 订阅</a>
</div>
</aside>
</div>
</div>
<footer><div id="footer" >
<div class="line">
<span></span>
<div class="author"></div>
</div>
<section class="info">
<p> Hello,I'm ran. For now I'm a graduate student in Chongqing University of Technology. <br/>
I'll share my learning experience with you at this blog.</p>
</section>
<div class="social-font" class="clearfix">
<a href="http://weibo.com/u/3151858255" target="_blank" class="icon-weibo" title="微博"></a>
<a href="https://github.com/LBingRun" target="_blank" class="icon-github" title="github"></a>
<a href="mailto:[email protected]" target="_blank" class="icon-email" title="Email Me"></a>
</div>
<p class="copyright">Powered by <a href="http://zespia.tw/hexo/" target="_blank" title="hexo">hexo</a> © 2017
<a href="http://LBingRun.github.io/about" target="_blank" title="ran">ran</a>
<a href="http://LBingRun.github.io/sitemap.xml" target="_blank" title="sitemap.xml">sitemap</a>
</p>
</div>
</footer>
<script src="/js/jquery-2.0.3.min.js"></script>
<script src="/js/jquery.imagesloaded.min.js"></script>
<script src="/js/gallery.js"></script>
<script src="/plan/plan.js"></script>
<script src="/high/Crazy.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".hitokoto > a").attr('href','javascript:void(0);');
$(".hitokoto").attr('title','');
$('.navbar').click(function(){
$('header nav').toggleClass('shownav');
});
var myWidth = 0;
function getSize(){
if( typeof( window.innerWidth ) == 'number' ) {
myWidth = window.innerWidth;
} else if( document.documentElement && document.documentElement.clientWidth) {
myWidth = document.documentElement.clientWidth;
};
};
var m = $('#main'),
a = $('#asidepart'),
c = $('.closeaside'),
o = $('.openaside');
$(window).resize(function(){
getSize();
if (myWidth >= 1024) {
$('header nav').removeClass('shownav');
}else
{
m.removeClass('moveMain');
a.css('display', 'block').removeClass('fadeOut');
o.css('display', 'none');
}
});
c.click(function(){
a.addClass('fadeOut').css('display', 'none');
o.css('display', 'block').addClass('fadeIn');
m.addClass('moveMain');
});
o.click(function(){
o.css('display', 'none').removeClass('beforeFadeIn');
a.css('display', 'block').removeClass('fadeOut').addClass('fadeIn');
m.removeClass('moveMain');
});
$(window).scroll(function(){
o.css("top",Math.max(80,260-$(this).scrollTop()));
});
});
</script>
<script type="text/javascript">
var duoshuoQuery = {short_name:"LBingRan"};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</script>