swift 获得UIStoryboard的 控制器
摘要:let storyboard = UIStoryboard(name: "Main", bundle: nil) guard let viewController = storyboard.instantiateViewController(withIdentifier: "loginViewControll...
阅读全文
posted @
2019-10-31 10:31
懂事长qingzZ
阅读(925)
推荐(0) 编辑
Xcode 11 初体验
摘要:https://www.jianshu.com/p/a3d0acecb8d4
阅读全文
posted @
2019-10-30 15:25
懂事长qingzZ
阅读(173)
推荐(0) 编辑
iOS13 苹果登录demo
摘要:点击 下载 https://developer.apple.com/documentation/authenticationservices/adding_the_sign_in_with_apple_flow_to_your_app
阅读全文
posted @
2019-10-30 11:38
懂事长qingzZ
阅读(683)
推荐(0) 编辑
swift 的 present 控制器的显示方式 枚举
摘要:vc.modalPresentationStyle = .formSheet //iOS13之后的默认可以下滑dissmiss, 强制设置 modal 到界面上, 不能下滑 移除s视图 vc.isModalInPresentation = true vc.modalPresentationStyle
阅读全文
posted @
2019-10-28 10:55
懂事长qingzZ
阅读(3446)
推荐(0) 编辑
Swift之于OC有啥优势?
摘要:https://www.jianshu.com/p/59efa5c9f5c6
阅读全文
posted @
2019-10-24 14:46
懂事长qingzZ
阅读(123)
推荐(0) 编辑
永别了百度!手把手教你快速搜索你要的资源!
摘要:永别了百度!手把手教你快速搜索你要的资源! https://www.jianshu.com/p/d86ccea7ee70
阅读全文
posted @
2019-10-22 17:09
懂事长qingzZ
阅读(157)
推荐(0) 编辑
swift 初探ARKit
摘要:参考 https://www.jianshu.com/p/348678918783 隐私权限 https://www.cnblogs.com/shisishao/p/5872178.html
阅读全文
posted @
2019-10-22 11:45
懂事长qingzZ
阅读(586)
推荐(0) 编辑
mac 显示隐藏文件 快捷键
摘要:shift + command + . 不需要终端 ,不需要重启 直接显示
阅读全文
posted @
2019-10-22 09:27
懂事长qingzZ
阅读(224)
推荐(0) 编辑
Swift常用内置函数介绍
摘要:参考 https://www.jianshu.com/p/94e18f948cbe Swift 5.0 新特性 内置函数 https://www.jianshu.com/p/afa74763b78b Swift更新最新信息的总结网站 https://www.whatsnewinswift.com/
阅读全文
posted @
2019-10-21 17:46
懂事长qingzZ
阅读(141)
推荐(0) 编辑
MacOS Catalina 虚拟机VMware Fusion 重装教程 和问题
摘要:安装VMware Fusion 1 https://www.cnblogs.com/zhangycun/p/10932326.html 2 下载地址 https://www.vmware.com/products/fusion/fusion-evaluation.html 3 激活码 https:/
阅读全文
posted @
2019-10-18 11:08
懂事长qingzZ
阅读(1244)
推荐(0) 编辑
swift 时间显示格式
摘要:一般日期显示的时候 都是2018.8.3 或者2018-8-3 ,这种格式 设置的时候 时间戳 设置为 yyyy.M.d 或者 yyyy-M-d , 这显示一位数字, 如果日期 是两位 比方说 2018.10.3 他会补全的
阅读全文
posted @
2019-10-17 13:54
懂事长qingzZ
阅读(577)
推荐(0) 编辑
macOS降级重装系统教程
摘要:macOS降级重装系统教程:手把手教你Mac降级不再难 http://baijiahao.baidu.com/s?id=1642530580676517461&wfr=spider&for=pc
阅读全文
posted @
2019-10-16 11:38
懂事长qingzZ
阅读(935)
推荐(0) 编辑
swift UIPickerView 更改背景色,隐藏分割线,修改字体的font和颜色
摘要://隐藏中间两条分割线 if pickerV.subviews.count >= 3{ pickerV.subviews[1].isHidden = true pickerV.subviews[2].isHidden = true } //修改选中行的背景色 for subView in picke
阅读全文
posted @
2019-10-11 18:20
懂事长qingzZ
阅读(2238)
推荐(0) 编辑