在 Xcode 打包上传 App Store 时,在机扫过程中会通知包提交构建失败,原因如下 ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwe…

2023年4月10日 0条评论 370点热度 0人点赞 帮助教程 阅读全文

出现此问题一般是在获取系统图片的时候,提示此错误,kUTTypeImage 属于 MobileCoreServices.framework 库。    

2023年4月7日 0条评论 317点热度 0人点赞 帮助教程 阅读全文

今天切了一个新包的版本,在使用 Xcode 打包上传 App Store 中出现了无法上传的问题;问题其实是使用的过程中不细心导致的,我们来看看这个问题。    

2023年4月6日 0条评论 777点热度 0人点赞 帮助教程 阅读全文

 

2023年4月3日 0条评论 322点热度 0人点赞 帮助教程 阅读全文

翻译自苹果官方文档:Understanding and Analyzing Application Crash Reports   nimo: 这篇长达1w多字的文章,大概前后翻译了一个月,“写”了三遍:第一遍是直译,第二遍是把直译改成程序员看着舒服的“行话”,第三遍是把原文里说的过于抽象或者简单的部分加上我的注解(大家看见所有以nimo开头的部分)。 文章发布后我才发现,这并不是针对iOS Crash report唯一的翻译版本。哪篇翻译的更好这个见仁见智,但我希望这篇是翻译的最用心的版本。 当app发…

2022年9月23日 0条评论 475点热度 0人点赞 帮助教程 阅读全文

  给定一个示例Array数组 var animals = ["cats", "dogs", "chimps", "moose"] Array删除第一个元素 animals.removeFirst() // "cats" print(animals) // ["dogs", "chimps", "moose"] Array删除最后一个元素 animals.removeLast() // "moose" print(animals) // ["cats", "dogs", "chimps"] Array删除…

2022年7月28日 0条评论 622点热度 0人点赞 帮助教程 阅读全文

  将UIButton添加至UIBarButtonItem var button: UIButton = UIButton() button.setImage(UIImage(named: "cameraIconInactive"), forState: .Normal) button.frame = CGRectMake(0, 0, 45, 45) button.targetForAction("pushProfileToCamera", withSender: nil) var rightItem:U…

2022年7月28日 0条评论 809点热度 0人点赞 帮助教程 阅读全文

  字典转字符串 Dictionary To String 字符串转字典 String To Dictionary  

2022年7月28日 0条评论 1076点热度 0人点赞 帮助教程 阅读全文

iPhone 13 Pro Max does not support the architecture of the selected executable. Switch to a device that supports x86_64. 好几天没有打开项目,更新Xcode到Version 13.4.1 (13F100) 之后,项目无法通过模拟器启动;

2022年7月12日 0条评论 983点热度 0人点赞 帮助教程 阅读全文

介绍:C系列对于nullable的解释: nullable C 渊源:在Xcode6.3中使用了双下划线的版本,但是由于和第三方库的潜在冲突,所以苹果在Xcode 7 中修改为单下划线+首字母大写;后续为了和旧版本Xcode兼容,继续使用双下划线的版本,也就是两种是等价的。 Apple Swift 博客 区别:区别在于单下划线和双下划线需要放在类型定义之后,而非下划线的需要放在类型定义前。 nonnull,nullable,null_unspecified _Nonnull,_Nullable,_Null_unsp…

2022年4月27日 0条评论 1224点热度 0人点赞 帮助教程 阅读全文