摘要:
1. Windows平台,有一个最简单的转化方法,就是使用内置的记事本小程序notepad.exe。打开文件后,点击文件菜单中的另存为命令,会跳出一个对话框,在最底部有一个编码的下拉条。 里面有四个选项:ANSI,Unicode,Unicode big endian和UTF-8。1)ANSI是默认的 阅读全文
摘要:
1. 首先以二进制方式编辑这个文件: vim -b datafile现在用 xxd 把这个文件转换成十六进制: :%!xxd文本看起来像这样: 0000000: 1f8b 0808 39d7 173b 0203 7474 002b 4e49 ....9..;..tt.+NI 0000010: 4b2 阅读全文
摘要:
1. https://www.cnblogs.com/wfwenchao/p/5577789.html https://github.com/wangzz/Demo http://www.kimbs.cn/2015/04/ios-development-code-signing/ https://s 阅读全文
摘要:
1.JS 统计输入字符串在UTF-8编码下的长度 https://www.cnblogs.com/dwade/articles/alen.html 阅读全文
摘要:
1. self.localVideoSurface.connection.videoOrientation = [self getCurOritation]; 阅读全文
摘要:
1. https://www.cnblogs.com/ruihaha/p/5886304.html 2. 大概分为 分解成5个步骤:拆分为5个构建版本——分解为.o文件(*5)——删除第三方库(*5)——.o文件合成(*5)——合成兼容版本。 https://blog.csdn.net/Gigibo 阅读全文
摘要:
1. /* NSObject.h Copyright (c) 1994-2018, Apple Inc. All rights reserved. */ #if __has_feature(objc_arc) // After using a CFBridgingRetain on an NSObj 阅读全文
摘要:
1. http://blog.51cto.com/7666425/1264690 https://github.com/huhu4017/hello-world/blob/c5a345a1bfeedf2a84744d2f3c5da37fc05ad67d/common/ConfigIniFile.cp 阅读全文
摘要:
1. 7.如果将自己打包的bundle给别人使用,别人在打包上传过程中可能会遇到错误提示如: ERROR ITMS-90171: "Invalid Bundle Structure - The binary file 'lhby.app/Test.bundle/Test' is not permit 阅读全文
摘要:
1.验证签名 1. https://blog.csdn.net/laughing2333/article/details/52292481 14.这么多机器,第三方机构的公钥怎么跑到了客户端的机器中呢? 其实呢,现实中,浏览器和操作系统都会维护一个权威的第三方机构列表(包括它们的公钥)。因为客户端接 阅读全文