1 2 3 4 5 ··· 17 下一页
摘要: 一、开发环境要求 Unity versions : 需要更新到 Unity 2022LTS 然后使用最新团结引擎:https://unity.cn/tuanjie/releases DevEco Studio Build Version: 4.1.3.600 及以上版本 Target API: 11 阅读全文
posted @ 2024-05-29 11:58 七夜i 阅读(98) 评论(0) 推荐(0) 编辑
摘要: import http from '@ohos.net.http'; import { taskpool } from '@kit.ArkTS'; export class Request{ static async get(url:string, header?: Object, expectDa 阅读全文
posted @ 2024-05-08 13:58 七夜i 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 鸿蒙TOTP 实现: import cryptoFramework from '@ohos.security.cryptoFramework'; import { util } from '@kit.ArkTS'; export class HmacSHA1{ static async hmacSH 阅读全文
posted @ 2024-03-12 18:52 七夜i 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 一、模型&环境介绍 1. ChatGLM github 地址:https://github.com/THUDM 模型地址:https://huggingface.co/THUDM 2. m3e 模型地址:https://huggingface.co/moka-ai/m3e-base/ 3. text 阅读全文
posted @ 2023-09-26 18:22 七夜i 阅读(2630) 评论(0) 推荐(0) 编辑
摘要: 请订阅老司机官方小专栏看完整文章:https://xiaozhuanlan.com/topic/2583470691 作者本人作为最早的一批手游开发者,当年使用 ObjC 对接苹果应用内支付、推送以及一些三方登录、广告、分享等 SDK ,要痛苦就有多么痛苦。是的,当时还是 MRC 时代,手一抖就内存 阅读全文
posted @ 2023-02-16 17:45 七夜i 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 描述 最近开发,由于使用到三方二进制库(谷歌浏览器内核),且超过了100M,github 上传受限制,所以使用官方建议的 LFS 方式进行管理。 Git LFS Git LFS 官网介绍 1.安装 通过 Homebrew 安装: brew install git-lfs 2.初始配置 安装完只需要执 阅读全文
posted @ 2023-02-16 16:57 七夜i 阅读(50) 评论(0) 推荐(0) 编辑
摘要: https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPFrameworks/Frameworks.html https://clang.llvm.org/docs/Modules.html http 阅读全文
posted @ 2021-07-26 23:15 七夜i 阅读(190) 评论(0) 推荐(0) 编辑
摘要: WWDC21 10101 - 记录你的高光时刻 概述 Clips recording 是 WWDC21 ReplayKit 引入的新特性,用于在 iOS 以及 macOS 设备上记录游戏的精彩瞬间或是高光时刻(Clips recording 不支持 tvOS)。 早在 WWDC15 上,iOS9 引 阅读全文
posted @ 2021-07-26 17:35 七夜i 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 一、Unity 导出 Xcode 工程 1.建议使用 Unity 2020 以及以后的版本 2.流程图: a.新建工程 b.导入 3D 模型以及开发绑定 C# 脚本 c.编译导出 Xcode 工程 二、Unity 导出的 Xcode 工程生成 UnityFramework.framework Uni 阅读全文
posted @ 2021-07-09 14:29 七夜i 阅读(707) 评论(0) 推荐(0) 编辑
摘要: ###一、ISA结构 struct objc_object { private: isa_t isa; }; union isa_t { Class cls; uintptr_t bits; #if defined(ISA_BITFIELD) // ISA_BITFIELD意为 isa位域 stru 阅读全文
posted @ 2021-05-31 00:12 七夜i 阅读(166) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 17 下一页