上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 34 下一页
摘要: dyld: Library not loaded: Referenced from: Reason: image not found 引入别人的SDK出现的问题,常见的解决方案我就不提了,思想都是将库打包进ipa里面(Copy Files or Embed & Code Sign),如果没有意外问题 阅读全文
posted @ 2021-05-13 10:50 雨筱逸悠 阅读(333) 评论(0) 推荐(0) 编辑
摘要: otool -L xxx 查看一个object(链接后生成的二进制)的所有的链接库 可以用来查看App(解压ipa后进入app包里面的二进制)所有的依赖 或者是自己生成的 framework .a 库等 grep -r <symbol字符串> . 不要忘记了最后的 . 是必须的 可以进入到指定的项目 阅读全文
posted @ 2021-05-13 10:22 雨筱逸悠 阅读(66) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-05-11 18:23 雨筱逸悠 阅读(0) 评论(0) 推荐(0) 编辑
摘要: + (UIImage *)convertToGrayscale:(UIImage*)sourceImage { return [self convertToGrayscale:sourceImage.CGImage scale:sourceImage.scale]; } + (UIImage *)c 阅读全文
posted @ 2021-05-08 19:10 雨筱逸悠 阅读(225) 评论(1) 推荐(0) 编辑
摘要: 亿图图示 绘制UML、流程图、类图的工具 阅读全文
posted @ 2021-04-30 17:31 雨筱逸悠 阅读(45) 评论(0) 推荐(0) 编辑
摘要: Apple官方说明 https://support.apple.com/zh-cn/HT212025https://developer.apple.com/cn/app-store/user-privacy-and-data-use/在iOS14.5及之后的系统版本中默认关闭了IDFA的访问权限,如 阅读全文
posted @ 2021-04-30 10:18 雨筱逸悠 阅读(703) 评论(0) 推荐(0) 编辑
摘要: //main import 'package:flutter/material.dart'; import 'package:use_with_native/native_system_call.dart'; import 'test_page_blue.dart'; import 'test_pa 阅读全文
posted @ 2021-04-29 16:33 雨筱逸悠 阅读(1760) 评论(0) 推荐(0) 编辑
摘要: 开发工具下载地址 https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html 微信小程序 https://q.qq.com/wiki/tools/devtool/#开发者工具下载 QQ小程序 开发阅读文档 https 阅读全文
posted @ 2021-04-28 15:40 雨筱逸悠 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 基于同步或者异步的方法,创建异步执行的方法 Future<R> Function<Q, R>(FutureOr<R> Function(Q), Q, {String? debugLabel}) compute Type: Future<R> Function<Q, R>(FutureOr<R> Fu 阅读全文
posted @ 2021-04-27 09:41 雨筱逸悠 阅读(108) 评论(0) 推荐(0) 编辑
摘要: TigerRegular *reg = [TigerRegular new]; [reg addOptionalTextItems:@[@"http", @"ftp", @"wc"] minTimes:1 maxTimes:1]; [reg addStaticText:@"s" minTimes:0 阅读全文
posted @ 2021-04-23 18:10 雨筱逸悠 阅读(908) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 34 下一页