A type that represents either a wrapped value or nil, the absence of a value.
这句话是来自官方文档对可选类型(Optional)的解释,意思就是这个类型有可能有值,也有可能为nil。
对于OC的开发来说,这个类型好像并
...
A popover is a transient view that appears above other content onscreen when you tap a control or in an area.
以上内容来自苹果官方人机交互指南中对Popover的简介。
简单来说Pop
...
产品上线之后,总会有各种各样的环境导致会出现一些无法复现的问题,对于开发人员来说,这个时候的日志就是一个很重要的找错手段,如果能像Xcode调试的时候一样获取到所有的日志,那么至少会对我们排查错误会有一些帮助。
找到大概三种方式来记录日志:
Apple System Log(ASL)
日志重定向
...
Fastlane是一个完全开源的项目GitHub - fastlane/fastlane: 🚀 The easiest way to automate building and releasing your iOS and Android apps,实际上是一个Ruby实现的工具集合,他可以完成i
...