摘要: 在podspec文件里添加以下代码既可通过该pod repo push的代码校验,storekit2的相关代码貌似不再支持i386的指令集 s.pod_target_xcconfig = { 'VALID_ARCHS' => 'x86_64 armv7 arm64' } 阅读全文
posted @ 2022-04-07 21:28 jxst441192 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 1.导入protobuf时,注意在podfile文件中添加use_frameworks!即可! 2.如果pod install时有提示 - Use the `$(inherited)` flag, or - Remove the build settings from the target. 按照黄 阅读全文
posted @ 2021-04-08 14:11 jxst441192 阅读(794) 评论(0) 推荐(0) 编辑
摘要: 爬虫抓包 chrome按F12抓包 页面跳转后记录信息消失解决办法 解决办法: 按f12→点击NetWork→勾选Preserve log就可以 阅读全文
posted @ 2021-01-12 17:25 jxst441192 阅读(1993) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/DoDiligently/article/details/80106914 记录一个坑,在react native项目调试中,如果打开了Debug JS Remotely,即在chrome中打开了调试控制台,此时项目中setTimeout和setIn 阅读全文
posted @ 2020-09-22 20:38 jxst441192 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 通过公司渠道咨询了苹果的人员,得到的回应是:使用applicationUsername来存储订单号或者username等用法其实是一种错误的用法,这个参数其实是给苹果自己用的,用于识别出非法欺诈的内购,而不是给开发者使用(我特么晕死)。 目前线上发现上iOS13和以下还是有数据,但是预计后续的所有i 阅读全文
posted @ 2020-09-22 13:52 jxst441192 阅读(2686) 评论(0) 推荐(0) 编辑
摘要: https://developer.apple.com/download/more/ 阅读全文
posted @ 2020-05-19 13:48 jxst441192 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 使用系统自带的openUrl后发现打开浏览器死活会乱码,比如把urlStr中的?转义成%3F,后来发现代码中的调用方法是这么写的 [[UIApplication sharedApplication] openURL:[NSURL fileURLWithPath:url options:@{} com 阅读全文
posted @ 2020-03-18 13:53 jxst441192 阅读(6389) 评论(1) 推荐(0) 编辑
摘要: debug状态下,maccatalyst的wkwebview输入任意字符时闪退,但是直接运行时就没问题,目前os版本是10.15.2 (19C57),Xcode是Version 11.3 (11C29),仍存在这个问题。 阅读全文
posted @ 2020-03-02 18:30 jxst441192 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 苹果iOS13 内购隐藏大坑: - (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response iOS12之前是在主线程回调, 在iOS13改成了在一个异步线 阅读全文
posted @ 2020-01-17 15:26 jxst441192 阅读(2518) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/31406812 主要就是确保IDEA artifacts打包配置里尽量不要有中文 阅读全文
posted @ 2019-12-25 09:26 jxst441192 阅读(1098) 评论(0) 推荐(1) 编辑