Xcode 删除 Provisioning Profile Xcode 里面的 Provisioning Profile 选项里面有太多不用的证书,其实是存在下面路径中,找到对应的删除即可。 1~/Library/MobileDevice/Provisioning Profiles 2020-05-10 iOS Xcode iOS
Lua 代码规范 首先声明,由于我们是在 Unity 中使用 Lua 开发,经常需要调用 C# 相关的一些 API,为了保证代码书写的统一,所以很多 Lua 命名规范参考了 C# 代码规范。 Pascal 命名法:每个单词首字母均大写,例如:FieldName。 Camel 命名法:第一个单词首字母小写,其余单词首字母大写,例如:fieldName。 类使用 Pascal 命名法。 成员变量使用 Cam 2020-05-05 Lua Lua
C# 代码规范 Pascal 命名法:每个单词首字母均大写,例如:FieldName。 Camel 命名法:第一个单词首字母小写,其余单词首字母大写,例如:fieldName。 命名空间使用 Pascal 命名法。 123namespace System {}namespace System.IO {}namespace UnityEngine.UI {& 2020-05-05 CSharp CSharp
Git 子模块 子模块的添加1git submodule add <url> <path> 其中,url 为子模块的路径,path 为该子模块存储的目录路径,path 可缺省。 2020-04-19 Git Git
Another git process seems to be running in this repository Git 操作的过程中突然出现以下错误: 12345Another git process seems to be running in this repository, e.g.an editor opened by 'git commit'. Please make sure all processesare terminated then try again. If it still fail 2020-04-18 Git Git