以iOS13.3和Xcode11.4在mac为例,内存数据只能做对比用,静置场景: 使用GPX方案,取脚本和对应的Xcode工程代码到本地用Xcode打开工程,脚本用来生成轨迹文件(暂时还不知道怎么做,后面了解) 图1.1为工程代码,图1.2为脚本 1.解压location-simulation-m ...
分类:
移动开发 时间:
2020-01-02 20:35:14
阅读次数:
111
http://yulingtianxia.com/blog/2016/09/28/Let-s-Talk-About-project-pbxproj/ http://www.monobjc.net/xcode-project-file-format.html ...
分类:
其他好文 时间:
2020-01-02 20:23:59
阅读次数:
79
GCC GCC(GNU Compiler Collection,GNU编译器套装),是一套由 GNU 开发的编程语言编译器。它是一套以 GPL 及 LGPL 许可证所发行的自由软件,也是 GNU计划的关键部分,亦是自由的类Unix及苹果电脑 Mac OS X 操作系统的标准编译器。 GCC 原名为 ...
分类:
其他好文 时间:
2019-12-31 18:34:04
阅读次数:
92
编写第一个hello world 创建helloworld.c 编译自己的第一个程序 Mac os clang g o hellword helloword.c g: 是输出调试信息 o: 是输出可执行程序 hellword: 最终生成的文件名称 helloword.c: 指定编译的文件 Linux ...
分类:
编程语言 时间:
2019-12-31 11:01:43
阅读次数:
93
日志文件的三大步 常用的日志级别 例子 vim ffmpeg_log.c clang g o ffmpeg_log ffmpeg_log.c lavutil ./ffmpeg_log ...
分类:
其他好文 时间:
2019-12-31 10:58:05
阅读次数:
79
问题描述:因为objc是动态语言,对象的类型在运行时才会被确认,所以很容易出现一个定义为NSString类型的变量,在运行时的类型变成了NSNull,从而导致如下错误出现:-[NSNull stringByAppendingFormat:]: unrecognized selector sent t ...
分类:
其他好文 时间:
2019-12-30 17:10:07
阅读次数:
125
前提条件: 1.Xcode版本为Xcode10及以上2.Appium版本必须为1.9及以上,因为Xcode为10.0 3.appium-desktop4.安装所需依赖库,包括: a.Homebrew b.Git c.node (brew install node) d.npm (brew insta ...
分类:
移动开发 时间:
2019-12-28 13:32:00
阅读次数:
315
查看编译环境要求 进入官网 https://clang.llvm.org/ 找到编译llvm的要求: cmake = 3.4.3 gcc = 5.1.0 python = 2.7 zlib = 1.2.3.4 GNU Make = 3.79, 3.79.1 其他都好弄, 主要是gcc, 不想折腾GC ...
分类:
其他好文 时间:
2019-12-28 09:17:15
阅读次数:
160
1 问题:使用vscode code 阅读C代码 outline 显示No symbols found in document 'xxxx' 2 参考网上解决方法,进行如下操作 2.1 安装C/C++ 扩展 2.2 安装 clang 和 安装MinGw, 理论上来说只要一个就好了 2.3 配置工程头 ...
分类:
其他好文 时间:
2019-12-27 11:40:42
阅读次数:
943
class Node { public $data; public $left; public $right; public function __construct($data){ $this->data=$data; } } class CreateTree{ public $tree; //二 ...
分类:
其他好文 时间:
2019-12-24 21:00:32
阅读次数:
83