
Swift
文章平均质量分 58
「已注销」
不使用私信
世界最大代码托管平台的用户名为Yang-Xijie
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Swift|parallel for loops
在我们使用for循环的时候,其中的语句总是在前一个for完成之后才执行下一个。当执行大批量任务时,如果其中的任务相互独立,可以使用DispatchQueue.concurrentPerform来使用多线程平行的同步执行这些任务来节省时间。 // main.swift import Foundation let start = CFAbsoluteTimeGetCurrent() var array = [Int](repeating: 0, count: 60_000_000) // 60_000_原创 2021-12-20 11:58:18 · 1711 阅读 · 0 评论 -
APP开发企划 | macOS平台Markdown桌面便笺
现有markdown编辑器分析 另开窗口渲染 原理:将markdown String转换为html,用网页的方式展现即可 Swift平台有package: 需求 在桌面使用键盘创建【显示markdown符号 且 支持高亮大小调整】的便签框 haha code print("hello") 但是呢还行, ...原创 2021-06-10 18:36:15 · 444 阅读 · 0 评论 -
Usually Used Menu and Shortcuts in Xcode 12.4
File New File ⌘ N Save ⌘ S Save All ⌥ ⌘ S Close Tab ⌘ W Close Other Tabs ⌥ ⌘ W Close Window ⇧ ⌘ W Add File ⌥ ⌘ N Export File Show File in Finder Open Project ⌘ O Edit View Show Library ⇧ ⌘ L Show Code Review ⌥ ⇧ ⌘ ↩︎ (Git) Editor Show Related Items ⌃ 1 Sho原创 2021-01-29 16:10:56 · 189 阅读 · 0 评论 -
Swift Markup Formatting Syntax
Swift Markup Syntax 文章目录Swift Markup SyntaxStylesKeywordsHow to use Apple Developer | Markup Formatting Reference See All Marking Up Here I seperate them into two parts: formats of style and keywords using in documentation. Styles Block Comment /** */ Bull原创 2021-01-27 16:51:51 · 182 阅读 · 0 评论