-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1020 lines (617 loc) · 29.9 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="en">
<!-- Head tag -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="xBT4GhYoi5qRD5tr338pgPM5OWHHIDR6mNg1a3euekI" />
<meta name="baidu-site-verification" content="xl7Ck2KCfm" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="description" content="我的个人博客">
<meta name="keyword" content="Evan, 爱问, 埃文, 博客, iOS Developer, 软件工程师, 程序员, Evan的博客, evanxlh, Evan 程序人生">
<link rel="shortcut icon" href="/img/green-life.jpg">
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<!--<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>-->
<title>
evanxlh
</title>
<link rel="canonical" href="https://evanxlh.github.io/">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/dusign-light.css">
<link rel="stylesheet" href="/css/dusign-common-light.css">
<link rel="stylesheet" href="/css/font-awesome.css">
<link rel="stylesheet" href="/css/toc.css">
<!-- background effects end -->
<!-- Pygments Highlight CSS -->
<link rel="stylesheet" href="/css/highlight.css">
<link rel="stylesheet" href="/css/widget.css">
<link rel="stylesheet" href="/css/rocket.css">
<link rel="stylesheet" href="/css/signature.css">
<link rel="stylesheet" href="/css/fonts.googleapis.css">
<link rel="stylesheet" href="//cdn.bootcss.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- photography -->
<link rel="stylesheet" href="/css/photography.css">
<!-- ga & ba script hoook -->
<script></script>
<meta name="generator" content="Hexo 4.2.0"></head>
<!-- hack iOS CSS :active style -->
<body ontouchstart="">
<!-- background effects start -->
<!-- background effects end -->
<!-- Modified by Yu-Hsuan Yen -->
<!-- Post Header -->
<style type="text/css">
header.intro-header{
background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/img/header_img/home.jpg')
/*config*/
}
</style>
<header class="intro-header" >
<!-- Signature -->
<div id="signature">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading">
<h1>evanxlh</h1>
<!--<hr class="small">-->
<span id="subdusi" class="subheading">路漫漫其修远兮,吾将上下而求索</span>
</div>
</div>
</div>
</div>
</div>
<div class="waveWrapper">
<div class="wave wave_before" style="background-image: url('/img/wave-light.png')"></div>
<div class="wave wave_after" style="background-image: url('/img/wave-light.png')"></div>
</div>
</header>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- <a class="navbar-brand" href="/">evanxlh</a> -->
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- Known Issue, found by Hux:
<nav>'s height woule be hold on by its content.
so, when navbar scale out, the <nav> will cover tags.
also mask any touch event of tags, unfortunately.
-->
<div id="huxblog_navbar">
<div class="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/">主页</a>
</li>
<li>
<a href="/archive/">归档</a>
</li>
<li>
<a href="/categories/">分类</a>
</li>
<li>
<a href="/about/">关于</a>
</li>
<li>
<a href="/photography/">摄影</a>
</li>
<li>
<a href="/tags/">标签</a>
</li>
</ul>
</div>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<script>
// Drop Bootstarp low-performance Navbar
// Use customize navbar with high-quality material design animation
// in high-perf jank-free CSS3 implementation
var $body = document.body;
var $toggle = document.querySelector('.navbar-toggle');
var $navbar = document.querySelector('#huxblog_navbar');
var $collapse = document.querySelector('.navbar-collapse');
$toggle.addEventListener('click', handleMagic)
function handleMagic(e){
if ($navbar.className.indexOf('in') > 0) {
// CLOSE
$navbar.className = " ";
// wait until animation end.
setTimeout(function(){
// prevent frequently toggle
if($navbar.className.indexOf('in') < 0) {
$collapse.style.height = "0px"
}
},400)
}else{
// OPEN
$collapse.style.height = "auto"
$navbar.className += " in";
}
}
</script>
<!-- Main Content -->
<!-- Main Content -->
<div class="container">
<div class="row">
<!-- Post Container -->
<div class="
col-lg-8 col-lg-offset-1
col-md-8 col-md-offset-1
col-sm-12
col-xs-12
post-container
">
<!-- Top -->
<!-- Main Content -->
<div class="post-preview">
<a href="/2024/01/01/computer-skills/">
<h2 class="post-title">
电脑使用技巧(Computer Skills)
</h2>
<h3 class="post-subtitle">
掌握些常用技巧,让你的工作效率事半功倍
</h3>
<div class="post-content-preview">
电脑使用技巧(Computer Skills)Unix Shell 命令查找与删除文件
在当前文件夹中查找与删除(忽略子文件夹,即非递归>查找与删除)
ls *.orm *.o
在当前文件夹与子文件夹中查找与删除(即递归查找与删除)
find . -name "*.o" -type ffind . -name "*.o" -type f -delete
...
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
2024-01-01, evanxlh
</p>
<div class="tags">
<a href="/tags/#Computer,电脑使用技巧, Mac" title="Computer,电脑使用技巧, Mac">Computer,电脑使用技巧, Mac</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2023/06/24/cmake-tutorial/">
<h2 class="post-title">
Cmake Tutorial
</h2>
<h3 class="post-subtitle">
教你快速登船 CMake, 构建跨平台项目
</h3>
<div class="post-content-preview">
CMake 快速指南首先,请自行在电脑里安装好 CMake, 可以去官网直接下载 GUI 程序: https://cmake.org/download/,
也可以通过命令行工具直接安装。
创建项目文件接下来,我们一起来创建一个名为 Demo 的项目,来介绍 CMake 的使用,以下我就直接贴上命令了,直接在命令终端敲一行,执行一行就OK。
创建项目目录结构
mkdir Democd D......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
2023-06-24, evanxlh
</p>
<div class="tags">
<a href="/tags/#CMake, Compile, Cross platform, 跨平台" title="CMake, Compile, Cross platform, 跨平台">CMake, Compile, Cross platform, 跨平台</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2023/06/24/hexo-create-personal-blog/">
<h2 class="post-title">
使用 Hexo + github.io 搭建个人博客
</h2>
<h3 class="post-subtitle">
使用 Hexo,帮忙您快速搭建自己的博客。
</h3>
<div class="post-content-preview">
Hexo + github.io 搭建个人博客安装在安装 Hexo 之前,您需要在您的电脑里安装以下内容:
Git
Node.js
接下来在命令终端执行以下两行命令就可以完成 Hexo 安装:
# 使用 npm 安装 Hexonpm install -g hexo-cli# Hexo 3.0 把服务器独立成了个别模块,您必须先安装 hexo-server 才能使用# Hexo Serve......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
2023-06-24, evanxlh
</p>
<div class="tags">
<a href="/tags/#Blog, 博客, Hexo, Github io" title="Blog, 博客, Hexo, Github io">Blog, 博客, Hexo, Github io</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2021/12/25/string-in-swift/">
<h2 class="post-title">
String in Swift
</h2>
<h3 class="post-subtitle">
记录下 Swift String 的常用操作
</h3>
<div class="post-content-preview">
String in Swift在使用 Swift 操作字符串时,尤其是在处理 text filed/text view 时,需要做输入限制的时候,难免会遇到一些坑,甚至 crash。原因就是不同用户有着不一样的输入习惯,有些用户喜欢用纯文字,有些喜欢使用表情(emoj) 等,如果处理不当,就很容易出现问题。下面就是我遇到的一个 emoj 问题,因为刚开始我没有使用 utf16 来处理 ind......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
2021-12-25, evanxlh
</p>
<div class="tags">
<a href="/tags/#Swift" title="Swift">Swift</a>
<a href="/tags/#macOS" title="macOS">macOS</a>
<a href="/tags/#NSTextView" title="NSTextView">NSTextView</a>
<a href="/tags/#UITextFiled" title="UITextFiled">UITextFiled</a>
<a href="/tags/#String" title="String">String</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/07/19/compile-ffmpeg-on-macos/">
<h2 class="post-title">
在 MacOS 上编译 FFmpeg 相关音视频库
</h2>
<h3 class="post-subtitle">
介绍如何为 ffmpeg 编译 lame, fdk-aac, x264
</h3>
<div class="post-content-preview">
MacOS 编译 FFmpeg 相关音视频库 - 01做音视频开发,除了平台提供的SDK外,我们经常会用到一些优秀的第三方开源库,这里我们将介绍下lame, fad-aac, x264的编译及使用。
音视频库介绍lame目前,LAME被认为是中高比特率和VBR的最佳MP3编码器,主要得益于其开发人员的专注工作和开源许可模式,使该项目能够利用来自世界各地的工程资源。 质量和速度的提升仍在继续,......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
2020-07-19, evanxlh
</p>
<div class="tags">
<a href="/tags/#FFmpeg" title="FFmpeg">FFmpeg</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/06/30/cocoapods-manual/">
<h2 class="post-title">
CocoaPods 便捷手册
</h2>
<h3 class="post-subtitle">
CocoaPods 命令帮助手册
</h3>
<div class="post-content-preview">
CocoaPods 便捷手册安装 CocoaPodsCocoaPods 的安装都是通过 gem 来管理,所以安装/更新 CocoaPods 之前,我们需要先更新下 gem:
sudo gem update --system 。
安装 CocoaPods
sudo gem install cocoapods -n /usr/local/bin
更新CocoaPods
sudo gem u......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
2020-06-30, evanxlh
</p>
<div class="tags">
<a href="/tags/#CocoaPods" title="CocoaPods">CocoaPods</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/06/29/git-manual/">
<h2 class="post-title">
Git 命令便捷手册
</h2>
<h3 class="post-subtitle">
Git常用命令手册,帮您快速查找命令
</h3>
<div class="post-content-preview">
Git 命令便捷手册Git配置在开始Git之旅之前,我们需要设置一下Git的配置变量,这是一次性的工作。这些设置会在用户文件(用户主目录的.gitconfig)或系统文件(eg. /etc/gitconfig) 中做永久的记录。
配置用户信息git config —global user.name “Evan Xie”
git config —global user.email your_e......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
2020-06-29, evanxlh
</p>
<div class="tags">
<a href="/tags/#Git" title="Git">Git</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/06/14/make-frameworks-using-xcode/">
<h2 class="post-title">
Xcode 制作 Framework & XCFramework
</h2>
<h3 class="post-subtitle">
带你逛逛编译原理及如何使用 Xcode 制作 .framework 和 .xcframework。
</h3>
<div class="post-content-preview">
使用 Xcode 制作 Framework 与 XCFramework最近公司有个项目外包,我就负责提供离在线语音识别 SDK 和数据埋点 SDK 封装,在制作 Framework 的过程中,遇到了很多问题。所以在这篇文章里我们会主要介绍下 如何制作 Frameworks ,以及如何解决遇到的一些问题。
编译过程简述在制作 Framework 之前,我想简单阐述下编译器的工作原理,这有助于我......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
2020-06-14, evanxlh
</p>
<div class="tags">
<a href="/tags/#Xcode Frameworks" title="Xcode Frameworks">Xcode Frameworks</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/05/28/ios-app-resigning/">
<h2 class="post-title">
iOS app 重签名及发布至 AppStore
</h2>
<h3 class="post-subtitle">
代码签名原理,ipa, xcarchive 脚本一键重签名,尽在这里
</h3>
<div class="post-content-preview">
iOS app 重签名及发布至 AppStore由于公司有个项目请了外包团队来开发,但不提供源码,只提供 xcarchive 或 ipa 包,而做为公司又不可能将证书及私钥发给外包团队,让他们来打包。所以重签名就是绕不过的坎了,只能自己来做这一工作了。刚开始直接从网上找资料,直接用现成的脚本作些修改来进行重签名,可都会出现各种问题。无耐之下,只能翻阅苹果官网文档以及 Troubleshoot......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
2020-05-28, evanxlh
</p>
<div class="tags">
<a href="/tags/#Build & Release" title="Build & Release">Build & Release</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/04/27/app-multi-environments/">
<h2 class="post-title">
App多环境配置探索
</h2>
<h3 class="post-subtitle">
为您解析基于Xocde的多环境配置, Development, Staging, Production.
</h3>
<div class="post-content-preview">
App多环境配置探索简介App开发为什么需要使用多环境呢?原因很简单,就是为了 App 或 App 新功能 在对所有用户开放之前能经过充分测试与验证,将问题降到最低,让用户有个好的使用体验。有了多环境,内部测试将完全与发布的产品独立开来,互不影响,这就是多环境的好处。
环境配置App 的环境配置方案有很多种,这里我使用一种个人认为比较好的方式来实现, 即 xcconfig 与 plist 相......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
2020-04-27, evanxlh
</p>
<div class="tags">
<a href="/tags/#Build & Release" title="Build & Release">Build & Release</a>
</div>
</div>
<hr>
<!-- Pager -->
<ul class="pager">
</ul>
</div>
<!-- Sidebar Container -->
<div class="
col-lg-3 col-lg-offset-0
col-md-3 col-md-offset-0
col-sm-12
col-xs-12
sidebar-container
">
<!--
<h5>搜索</h5>
<div class="search-article" class="tags">
<input id="search-kw" type="text" name="search_article" placeholder="请输入关键词" />
<div class="search-img">
<img
src="/img/search.png"
alt="search"
onMouseOver="this.src='/img/search-focus.png'"
onMouseOut="this.src='/img/search.png'"/>
</div>
</div>-->
<h5>搜索</h5>
<div id="site_search">
<div class="form-group">
<input type="text" id="local-search-input" name="q" results="0" placeholder="search" class="st-search-input st-default-search-input form-control"/>
</div>
<div id="local-search-result"></div>
</div>
<hr>
<!-- Featured Tags -->
<section>
<!-- no hr -->
<h5><a href="/tags/">特色标签</a></h5>
<div class="tags">
<a href="/tags/#Build & Release" title="Build & Release" rel="2">Build & Release</a>
</div>
</section>
<hr>
<!-- Short About -->
<section class="visible-md visible-lg">
<h5><a href="/about/">关于我</a></h5>
<div class="short-about">
<img id = "avatar_pic" src="/img/green-life.jpg" />
<p>欢迎来到这里,我是 evanxlh</p>
<!-- SNS Link -->
<ul class="list-inline">
<li>
<a target="_blank" href="https://github.com/evanxlh">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
</div>
</section>
<hr>
<h5>访问统计</h5>
<div class="widget">
<span>
浏览次数: <b><i><span id="busuanzi_value_site_pv"><i class="fa fa-spinner fa-spin"></i></span></i></b>
</span>
<br/>
<span>
访问人数: <b><i><span id="busuanzi_value_site_uv"><i class="fa fa-spinner fa-spin"></i></span></i></b>
</span>
</div>
<hr>
<h5>最近发布</h5>
<div class="widget">
<ul>
<li>
<a href="/2024/01/01/computer-skills/">电脑使用技巧(Computer Skills)</a>
</li>
<li>
<a href="/2023/06/24/cmake-tutorial/">Cmake Tutorial</a>
</li>
<li>
<a href="/2023/06/24/hexo-create-personal-blog/">使用 Hexo + github.io 搭建个人博客</a>
</li>
<li>
<a href="/2021/12/25/string-in-swift/">String in Swift</a>
</li>
<li>
<a href="/2020/07/19/compile-ffmpeg-on-macos/">在 MacOS 上编译 FFmpeg 相关音视频库</a>
</li>
</ul>
</div>
<hr>
<!-- Friends Blog -->
<h5>友情链接</h5>
<ul class="list-inline">
<li><a href="https://github.com/evanxlh" target="_blank">我的Github</a></li>
<li><a href="https://gitee.com/evanxlh" target="_blank">我的Gitee</a></li>
<li><a href="https://www.jianshu.com/u/dee556e31464" target="_blank">我的简书</a></li>
</ul>
<hr>
<h5>归档</h5>
<div class="widget">
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archives/2024/01/">一月 2024</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2023/06/">六月 2023</a><span class="archive-list-count">2</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2021/12/">十二月 2021</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/07/">七月 2020</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/06/">六月 2020</a><span class="archive-list-count">3</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/05/">五月 2020</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/04/">四月 2020</a><span class="archive-list-count">1</span></li></ul>
</div>
<hr>
<!-- Categories -->
<h5>分类</h5>
<div class="widget">
<ul>
<a href="categories/#iOS开发"><li>iOS开发</li></a>
<a href="categories/#开发工具"><li>开发工具</li></a>
<a href="categories/#Xcode"><li>Xcode</li></a>
<a href="categories/#音视频"><li>音视频</li></a>
<a href="categories/#Build & Compile"><li>Build & Compile</li></a>
<a href="categories/#Swift"><li>Swift</li></a>
</ul>
</div>
<hr>
</div>
</div>
</div>
<!-- Footer -->
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center">
<li>
<a target="_blank" href="https://github.com/evanxlh">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">
Copyright © evanxlh 2024
<br>
Powered by
<a href="https://github.com/dusign/hexo-theme-snail" target="_blank" rel="noopener">
<i>hexo-theme-snail</i>
</a> |
<iframe name="star" style="margin-left: 2px; margin-bottom:-5px;" frameborder="0" scrolling="0"
width="100px" height="20px"
src="https://ghbtns.com/github-btn.html?user=dusign&repo=hexo-theme-snail&type=star&count=true">
</iframe>
</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="/js/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="/js/bootstrap.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="/js/hux-blog.min.js"></script>
<!-- Search -->
<script src="/js/search.js"></script>
<!-- async load function -->
<script>
function async(u, c) {
var d = document, t = 'script',
o = d.createElement(t),
s = d.getElementsByTagName(t)[0];
o.src = u;
if (c) { o.addEventListener('load', function (e) { c(null, e); }, false); }
s.parentNode.insertBefore(o, s);
}
</script>
<!-- jquery.tagcloud.js -->
<script>
// only load tagcloud.js in tag.html
if($('#tag_cloud').length !== 0){
async("https://evanxlh.github.io/js/jquery.tagcloud.js",function(){
$.fn.tagcloud.defaults = {
//size: {start: 1, end: 1, unit: 'em'},
color: {start: '#bbbbee', end: '#0085a1'},
};
$('#tag_cloud a').tagcloud();
})
}
</script>
<!--fastClick.js -->
<script>
async("https://cdn.bootcss.com/fastclick/1.0.6/fastclick.min.js", function(){
var $nav = document.querySelector("nav");
if($nav) FastClick.attach($nav);
})
</script>
<!-- Google Analytics -->
<!-- Baidu Tongji -->
<!-- Search -->
<script type="text/javascript">
var search_path = "search.xml";
if (search_path.length == 0) {
search_path = "search.xml";
}
var path = "/" + search_path;
searchFunc(path, 'local-search-input', 'local-search-result');
</script>
<!-- busuanzi -->
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<a id="rocket" href="#top" class=""></a>
<script type="text/javascript" src="/js/totop.js?v=1.0.0" async=""></script>
<script type="text/javascript" src="/js/toc.js?v=1.0.0" async=""></script>
<!-- background effects line -->
<script type="text/javascript" src="/js/mouse-click.js" content='["🌱","🍀", "🍎","❤️","💖","💞",🍷","🌷","🦋"]' color='["rgb(121,93,179)" ,"rgb(76,180,231)" ,"rgb(184,90,154)"]'></script>
<!-- background effects end -->
<!--<script size="50" alpha='0.3' zIndex="-999" src="/js/ribbonStatic.js"></script>-->