d
This commit is contained in:
@@ -9,6 +9,7 @@ extension MicItem {
|
||||
|
||||
public init(_ id: String? = nil) {
|
||||
self.id = id
|
||||
/**/print("ИГР MicIV.init id: '\(id)'")
|
||||
self.proc = [
|
||||
Bus.Delay(shouldResetTimeout, K.MI, K.timeout, id),
|
||||
Bus.Sync(shouldResetActivity, K.MI, K.isActive, id),
|
||||
|
||||
@@ -6,10 +6,31 @@ import SwiftUI
|
||||
import UIKit
|
||||
|
||||
struct Content: View {
|
||||
@State private var selectedId = "1"
|
||||
var ids = ["1", "2", "3", "4"]
|
||||
var body: some View {
|
||||
MicItem.V()
|
||||
MicItem.V("1")
|
||||
MicItem.V("2")
|
||||
VStack {
|
||||
HStack {
|
||||
Text("MicItem id:")
|
||||
Picker("", selection: $selectedId) {
|
||||
ForEach(ids, id: \.self) {
|
||||
Text($0)
|
||||
}
|
||||
}
|
||||
}
|
||||
.pickerStyle(.segmented)
|
||||
Divider()
|
||||
.padding()
|
||||
MicItem.V(selectedId)
|
||||
Divider()
|
||||
.padding()
|
||||
List {
|
||||
ForEach(ids, id: \.self) {
|
||||
Text("\($0): TODO state")
|
||||
}
|
||||
}
|
||||
}
|
||||
.padding()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,7 +53,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate
|
||||
window?.makeKeyAndVisible()
|
||||
|
||||
/**/print("ИГР App.didFLWO")
|
||||
testMic1()
|
||||
//testMic1()
|
||||
//testMic2()
|
||||
testMic2_id("1")
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 3) {
|
||||
|
||||
Reference in New Issue
Block a user