CMake ios code signing Error MessageWhen I build soundtouch for ios, met following error 12error: Bundle identifier is missing. soundstretch doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER i 2024-04-03 #cmake
微信 xlog 源码分析 初始化程序启动初始化xlog 123456789101112131415161718192021222324+ (void)setup { NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES); NSString *libraryDirec 2024-03-29
ios xib 总结 Apple M1 arm64 - IBDesignable error: “incompatible architecture” (have ‘x86_64’, need ‘arm64’)1Failed to render and update auto layout status for ViewController (BYZ-38-t0r): dlopen(ICONButton.app, 0x 2024-03-18 #iOS
Xcode 源码调试微信 xlog Tencent/masr xlog macOS 源码调试get include folder1234567cd marspython build_osx.pyEnter menu:1. Clean && build.2. Gen OSX Project.3. Build xlog.4. Exit 选择1,生成 mars.framework, 我们主要是使用头文件目录。 2024-03-08
结构体位域中的高低位问题 测试代码如下: 1234567891011121314151617181920212223#include <iostream>union Test { unsigned char ch; struct { uint8_t a: 1; uint8_t b: 3; uint8_t c: 2; uint 2023-06-09 #c++
GDB Examining Memory 参考:gdb/Output-Formatsgdb/Memory Output Formats x : Print the binary representation of the value in hexadecimal. d: Print the binary representation of the value in hexadecimal. u: Print the b 2023-05-23 #lldb
oh my zsh prompt 展示当前路径 使用的主题为 1ZSH_THEME="robbyrussell" 修改配置, path ~/.oh-my-zsh/themes/robbyrussell.zsh-theme, 将 %c 替换为 %d 123456789# beforePROMPT="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]% 2023-05-17 #Shell
webrtc iOS 源码调试 获取源码 install Chromium depot_tools install on Linux / Mac 12$ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git$ export PATH=/path/to/depot_tools:$PATH fetch source cod 2023-05-09 #webrtc
使用 Apple Configurator 获取 ipa 文件 参考:Apple Configuration 2 获取ipa文件 工具 Apple Configurator可以在 Mac 的 App Store 中下载 操作 连接手机 点击 Add -> Apps -> 输入 app 名字 -> 点击添加 等待下载完成, 不要操作 去目录里找 ipa 文件 1~/Library/Group Containers/K36BK 2023-03-14 #iOS
open your terminal from xcode 参考: Open your terminal from Xcode 实现方式: 添加一个 Xcode Behaviors, 给 behavior 指定一个 shell script, behavior 触发的时候, 执行改脚本以当前目录打开 terminal。 步骤创建一个 shell 脚本 open-iterm-from-xcode 123456#!/bin/shdir="$PW 2023-03-07 #shell