惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog

博客园 - 木子东晓东

当androidStudio下载gradle出错时,切换到国内镜像的方法 DevEco Studio 调用hdc的方法 运行Flutter 真机运行安卓报错 将字符串数字转换为薪资类型10000转换为10,000 使用magicAPI对接python 文件,上传参数获取不到回参问题 使用python 实现自动发送邮件功能,并上传到宝塔 py集成宝塔,flask已加入模块,无法实现自动发送邮件功能 谷歌浏览器降级的方法-及chromedriver 下载文件 若依框架导入阿里OSS报错问题解决方案 解决若依框架与tailwindcss 样式冲突问题 若依框架前期启动工作 运行若依时报错 MAC 使用docker 启动宝塔 MAC flutter初步学习 2 flutter学习之添加第三方应用 MAC flutter初步学习 python Django 连接数据库失败的解决方法 Python之学习菜鸟教程踩的坑 Python学习之环境搭建
iOS 审核被拒,日志中找不到苹果返回的creashlog的解决办法
木子东晓东 · 2019-10-25 · via 博客园 - 木子东晓东

前几天在项目审核中,项目被拒绝,拒绝原因如下:

Guideline 2.1 - Performance - App Completeness

Your app still crashed on iPad running iOS 13.1.3 on WiFi when we:

Tap on login button.

We have attached detailed crash logs to help troubleshoot this issue.

Next Steps

To resolve this issue, please revise your app and test it on a device to ensure that it runs as expected.

Resources

For information on how to symbolicate and read a crash log, please review Tech Note TN2151 Understanding and Analyzing Application Crash Reports.

告诉我点击“登录”按钮的时候会崩溃!!!

并且附带了几个.txt的文件,里面都是16进制的崩溃日志

是这个样子的,翻来覆去的找解决方法,原来是要把返回的16进制转化为符号化读取崩溃日志的信息

这里有解析creashlog的详细教程,根据教程就能解析出来creash崩溃的位置

链接:https://www.jianshu.com/p/3caccc287346(iOS之解析审核Crash Log方式(一))

         https://www.jianshu.com/p/74052e371cb8(iOS之解析审核Crash Log方式(二))

这是一个漫长的过程,我就没有详细的去get这个技能

在反复查阅下,突然发现Xcode里有这样的一句提示:

[Assert] Access to UITextField's _placeholderLabel ivar is prohibited. This is an application bug and will become a hard crash in a future release

卧槽!!!

原来是_placholderLabel这个方法不能用了。在未来的版本可能会引起崩溃!!!!

链接 https://blog.csdn.net/a18339063397/article/details/97938699(这个是替换的方法)UITextField 的私有属性 _placeholderLabel 被禁止访问了

请各位iOS 开发工程师仔细的检查一下自己的项目中是否会含有这样的方法

如果有请替换掉,不然苹果审核是真心过不去啊!!!

以上均为自己所遭遇的真实填坑

希望可以对大家有帮助。谢谢