跳到主要内容

编程英语单词短语收集

· 阅读需 3 分钟
  1. demonstrate

    • 例句: This tutorial no longer ==demonstrates== current SwiftUI or Xcode practices.
    • 译文: 本教程不再演示当前的 SwiftUI 或 Xcode 实践。
    • 释义: 演示
  1. prevent

    • 例句: This option will ==prevent== Shadowrocket from being set as the default route.
    • 译文: 此选项将阻止 Shadowrocket 被设置为默认路由。
    • 释义: 阻止
  2. modifier

    • 例句: A new ==modifier== creates a new view based on the original one.
    • 译文: 一个新的修饰符基于原始的样子,会创建一个新的视图。
    • 释义: 修饰符
  3. components

    • 例句: One of the most common and recognizable user interface ==components== is the combination of an icon and a label.
    • 译文: 最常见、最容易识别的用户界面组件之一,就是图标+文字的组合。
    • 释义: 零件,组件
  4. idiom

    • 例句: This ==idiom== appears across many kinds of apps and shows up in collections, lists, menus of action items, and disclosable lists, just to name a few.
    • 译文: 这种惯用组合出现在许多类型的应用程序中,也出现在集合视图、列表、操作菜单以及可展开列表里——仅举几例而已。
    • 释义: 惯用模式,惯用组合
  5. just to name a few

    • 例句: This idiom appears across many kinds of apps and shows up in collections, lists, menus of action items, and disclosable lists, ==just to name a few==.
    • 译文: 这种惯用组合出现在许多类型的应用程序中,也出现在集合视图、列表、操作菜单以及可展开列表里——仅举几例而已。
    • 释义: 仅举几例 / 只是列举这么多
  6. interface

    • 例句: You create the user ==interface==, or UI, for your app inside the body, the entire contents of your app are in the code below.
    • 译文: 你在 body 属性中创建应用的用户界面(UI),应用程序的全部内容都在下面的代码中。
    • 释义: 界面
// NOTE: - 演示代码
import SwiftUI

struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundColor(.tint)

Text("Hello World")
}
}
}

#Preview {
ContentView()
}
  1. instance

    • 例句: To construct your narrative, the app needs an ==instance== of Story, which takes an array of StoryPage instances.
    • 译文: 要构建你的叙事,该应用需要一个 Story 实例,该实例接受一个 StoryPage 实例数组。
    • 释义: 实例
  2. hold

    • 例句: The text property ==holds== a String that describes the choice readers can make.
    • 译文: 文本属性保存一个字符串,用于描述读者可以做出的选择。
    • 释义: 保存,持有
  3. present

    • 例句: Use a navigation stack to ==present= a stack of views over a root view.
    • 译文: 使用导航堆栈在根视图上呈现一系列视图。
    • 释义: 显示,呈现
  4. indicates

    • 例句: A value-destination ==indicates== that you are pushing a value onto the path.
    • 译文: "Value destination"这种用法表明/意味着你正在将一个值推送到导航路径(Navigation path)上。
    • 释义: 表明,意味着