Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: formatting #1191

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions cn/docs/sdk/taptap-login/guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ iOS 提供通过添加 cocosPod 远程依赖和使用本地文件导入两种集

<CodeBlock>{` pod 'TapTapLoginSDK', '~> ${v4SDKVersions.taptap.ios }'`}</CodeBlock>

2. 执行 `Pod install` 下载对应依赖文件
2. 执行 `pod install` 下载对应依赖文件

3. 将工程 Pods 目录下 `TapTapLoginSDK/Frameworks/TapTapLoginResource.bundle`
等资源文件导入工程中

Expand Down Expand Up @@ -373,7 +374,7 @@ import TapTapCoreSDK
let options = TapTapSdkOptions()
options.clientId = "your_client_id" // 必须,开发者中心对应 Client ID
options.clientToken = "your_client_token" // 必须,开发者中心对应 Client Token
options.region = .CN // .CN:中国大陆,.overseas:其他国家或地区
options.region = .CN // .CN:中国大陆,.overseas其他国家或地区
options.enableLog = enableLog.selectedSegmentIndex == 0 // 是否开启 log,建议 Debug 开启,Release 关闭,默认关闭 log
options.preferredLanguage = TapLanguageType.auto // 语言设置,默认跟随系统,当系统语言不支持时,国内为中文,海外为英文

Expand Down
Loading