◾️環境
xcode11
SwiftUI
◾️質問
下記エラーが発生しているにも関わらず
ビルドは成功し、シミュレーションも表示されますが、
「Resume」ボタン押下で下記エラーが発生します。
(エラー)Failed to build ContentView.swift
作成したクラス「Stopwatch」の呼び出し方(文法)が
間違っているのでしょうか?
下記の強調表示の箇所(Stopwatch())で下記エラーが発生しています。
(エラー) Use of unresolved identifier 'Stopwatch'
↓
▼ContentView.swift
import SwiftUI
struct ContentView: View {
//メンバ変数
@ObservedObject var stopwatch = Stopwatch()
var body: some View { VStack {
▼Stopwatch.swift
import Foundation
//クラス定義
class Stopwatch: ObservableObject {
//共有できる変数
@Published var counter: Int = 0
@Published var delcounter: Int = 0
あなたの回答
tips
プレビュー