上一页 1 2 3 4 5 6 7 ··· 34 下一页
摘要: 名称:DebugCreator功能描述:在Flutter中,DebugCreator是一个能够在调试模式下创建widget和渲染对象的工具。它是Flutter SDK的一部分,有助于开发人员识别UI中的问题,以快速调试和修复应用程序。 使用DebugCreator时,开发人员可以手动创建Widget 阅读全文
posted @ 2023-05-14 11:24 雨筱逸悠 阅读(752) 评论(0) 推荐(0) 编辑
摘要: 名称:AbsorbPointer功能描述:在Flutter中,'AbsorbPointer'是一个Widget,其作用是阻止它下面的所有Widget接收用户输入。简单来说,如果你需要在Flutter中实现一个Widget,在某些条件下禁用用户交互的能力,你可以使用'AbsorbPointer'来实现 阅读全文
posted @ 2023-05-14 11:23 雨筱逸悠 阅读(431) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-04-21 13:53 雨筱逸悠 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 先贴大佬的链接 https://blog.csdn.net/slatop/article/details/124212126 准备材料 1. 开发者证书,用作导出私钥、签名证书 2. Apple开发者公钥证书,证书下是已经过期的,需要从Apple PKI - Apple重新下载安装 Apple Wo 阅读全文
posted @ 2023-04-13 22:35 雨筱逸悠 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 获取公钥 openssl x509 -in public.cer -inform DER -noout -pubkey 获取私钥 openssl pkcs12 -in privite.p12 -out private_key.pem -nodes -nocerts // // Shared.m // 阅读全文
posted @ 2023-04-13 21:28 雨筱逸悠 阅读(1352) 评论(0) 推荐(1) 编辑
该文被密码保护。 阅读全文
posted @ 2023-04-13 11:56 雨筱逸悠 阅读(0) 评论(0) 推荐(0) 编辑
摘要: + (UIBezierPath *)attributedString2BezierPath:(NSAttributedString *)attributedString inBounds:(CGSize)bounds { NSString *clearText = attributedString. 阅读全文
posted @ 2023-04-12 14:48 雨筱逸悠 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 查看iOS设备系统占比 https://developer.apple.com/support/app-store/ 阅读全文
posted @ 2023-04-11 19:02 雨筱逸悠 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #import "WKSVGConvert.h" #import <WebKit/WebKit.h> @interface WKSVGConvert () <WKNavigationDelegate> @property (nonatomic, strong) WKWebView *webView; 阅读全文
posted @ 2023-03-20 12:06 雨筱逸悠 阅读(72) 评论(0) 推荐(0) 编辑
摘要: struct RingShap: Shape { var pointSize: CGFloat = 10.0 func path(in rect: CGRect) -> Path { let drawRect = CGRectInset(rect, 0.5 * pointSize, 0.5 * po 阅读全文
posted @ 2023-03-15 13:33 雨筱逸悠 阅读(119) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 34 下一页