首页 GitHub Flavored Markdown语法概要
文章
取消

GitHub Flavored Markdown语法概要

github链接

一级标题

二级标题

三级标题

列表

  • 一级列表
    • 二级列表
      • 三级列表
      • 三级列表
      • 三级列表
    • 二级列表
    • 二级列表
    • 二级列表

有序序列

1、111111 2、222222 3、333333

无须序列(-、* 或 +)

  • 111111
  • 222222
  • 333333

任务列表

  • #739
  • https://github.com/octo-org/octo-repo/issues/740
  • Add delight to the experience when all tasks are complete :tada:

提及人员和团队

@github/support What do you think about these updates?

引用文本

Text that is a quote Text that is a quote Text that is a quote

引用bash命令

1
$ gem install cocoapods

引用ruby命令

1
2
3
4
5
6
7
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!

target '<Your Target Name>' do
    pod 'SnapKit', '~> 5.6.0'
end

引用c代码

1
2
3
4
int WORD_MASK 7UL;
int word_align(int x) {
    return (x + WORD_MASK) & ~WORD_MASK;
}

引用objective-c代码

1
2
+(BOOL)resolveInstanceMethod:(SEL)sel
+(BOOL)resolveClassMethod:(SEL)sel

引用swift代码

1
2
3
func resolveInstanceMethod() -> bool {
    return true
}

引用applescript代码 applescript

1
2
3
tell application "Safari"
    activate
end tell 

Some basic Git commands are:

git status
git add
git commit

The background color is #ffffff for light mode and #000000 for dark mode.

程序启动

在启动App时,真正的加载过程是从exec()函数开始,系统会调⽤exec()函数创建进程,并且分配 内存。然后会执⾏以下的操作 1、把App对应的可执⾏⽂件加载到内存。 2、把dyld加载到内存。dyld也是⼀个可执⾏的程序 3、dyld进⾏动态链接。

Shows an illustrated sun in light mode and a moon with stars in dark mode.
本文由作者按照 CC BY 4.0 进行授权

-

Swift语法学习

Comments powered by Disqus.