011_swiftui_卡牌战争。比点数
程序员文章站
2022-05-30 13:49:20
...
效果图
使用到的资源图片
https://download.csdn.net/download/mp624183768/12320155
拖动到xcode后。记得修改名称
back->card1
Background->background
目的
主要是熟悉使用swiftUI中的布局。image。和Button的点击事件
和使用
源代码
//
// ContentView.swift
// SwiftUiWarCardGame
//
// Created by liuan on 2020/4/10.
// Copyright © 2020 liuan. All rights reserved.
//
import SwiftUI
struct ContentView: View {
@State private var randNum1=1
@State private var randNum2=1
@State private var score1=0
@State private var score2=0
var body: some View {
ZStack{
Image("background")
.resizable()
.edgesIgnoringSafeArea(.all)
VStack {
Spacer()
Image("logo")
下一篇: iOS基础控件--UIButton
推荐阅读