推荐
Java
Python
C/C++
Web
Harmony
Android
IOS
数据库
git
算法
操作系统
other
How to fix error 'Multiple commands produce..' after generating Core Data subclasses
在使用CoreData过程中,自动生成Entity对应的类,会出现一下Multiple commands produce after generating Core Data subclasses的问题
2024.06.13
Unable to load contents of file list: input/output xcfilelist
开发过程中升级和更新Pods的过程中,出现如下的报错问题:Unable to load contents of file list: '/Target Support Files/Pods-xxx/Pods-xxx-frameworks-Debug-input-files.xcfilelist'
2024.06.12
iOS 15 tableView 分区之间有间隔,区头有留白
在iOS15以上的系统版本下,tableView 设置Section过程中,Section直接的Header留有空白区域。
2024.06.12
App备案详解
为方便APP主办者办理备案,APP主办者在填写有关备案材料并实名核验后,由其网络接入服务提供者或应用分发平台通过“国家互联网基础资源管理系统”(即ICP/IP地址/域名信息备案管理系统,以下简称备案系统),向APP主办者住所所在地通信管理局在线提交备案申请,APP主办者无需到通信管理局窗口排队办理。
2023.09.26
How to resolve 'scanLocation' was deprecated in iOS 13.0
When trying to use a Scanner I am getting the warning that 'scanLocation' was deprecated in iOS 13.0. Since being able to scan from the next location is rather fundamental to scanning a String, wondering what to use instead of scanLocation. Apple's documentation for Scanner does not even mention the deprecation, let alone suggest what has taken the place of scanLocation.
2024.05.14
如何解决scanLocation在iOS 13.0中被废弃的问题?
当Swift新项目或者是老项目升级出现了Scanner 'scanLocation' was deprecated in iOS 13.0的问题,“scanLocation”在iOS 13.0中被废弃了。
2024.05.13
Sandbox: bash(76843) deny(1) file-write-data /Users/XXX/ios/Pods/resources-to-copy-XXX.txt
在开发过程中,一些老项目进行更新是突然发现Sandbox: bash(76843) deny(1) file-write-data /Users/XXX/ios/Pods/resources-to-copy-XXX.txt的错误,查了一些资料说需要设置ENABLE_USER_SCRIPT_SANDBOXING就可以解决了
2024.05.10
iOS viewWillAppear不执行的一种情况
最近在开发过程中,A(VC)跳转另一个B(VC),B(VC)执行dismissViewControllerAnimated。A不调用viewWillAppear不执行就出现了。
2024.05.09
iOS viewWillDisappear不执行的一种情况
最近在开发过程中,A(VC)跳转另一个B(VC)时。A不调用viewWillDisappear不执行就出现了。
2024.05.07
iOS17及Xcode15 Assertion failed: (aliasSectionNum == sectionNum && "alias and its target must be located in the same section")
Assertion failed: (aliasSectionNum == sectionNum && "alias and its target must be located in the same section"), function assignAliasAtomOffsetInSection, file Layout.cpp, line 3324.
2024.03.07
IOS开发者账号之间App转移出现的问题:Potential Loss of Keychain Access
开发者账户中的APP进行账户之间的转让,转让成功之后。upload包到新账号的时候,出现如下报错信息:(这个是一个警告消息,IPA包已经上传成功)
2024.03.07
2023年最新iOS面试题总结
浅谈iOS之weak底层实现原理,在iOS开发过程中,会经常使用到一个修饰词“weak”,使用场景大家都比较清晰,用于一些对象相互引用的时候,避免出现强强引用,对象不能被释放,出现内存泄露的问题。
2023.09.20
浅谈iOS之weak底层实现原理
浅谈iOS之weak底层实现原理,在iOS开发过程中,会经常使用到一个修饰词“weak”,使用场景大家都比较清晰,用于一些对象相互引用的时候,避免出现强强引用,对象不能被释放,出现内存泄露的问题。
2023.09.03
iOS开发Post请求错误:Error Domain=NSCocoaErrorDomain Code=3840 JSON text did not start with array or ...
在IOS开发过程化,经常会遇到各种网络请求的错误,错误:Error Domain=NSCocoaErrorDomain Code=3840 JSON text did not start with array or ...是一个比较常见的错误类型。
2023.08.25
IOS获取App版本号
在iOS开发中,获取App版本号是常见的操作。下面我将详细介绍如何获取APP版本号。
2023.08.20