Михаил Капелько 10 달 전
부모
커밋
3cdc300a49
2개의 변경된 파일5개의 추가작업 그리고 8개의 파일을 삭제
  1. +0
    -7
      src/App.swift
  2. +5
    -1
      src/VM.swift

+ 0
- 7
src/App.swift 파일 보기

@@ -17,13 +17,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate
window?.backgroundColor = UIColor.white
window?.makeKeyAndVisible()
Bus.process(
MeetupId.K.meetupIdTextUI.rawValue,
MeetupId.K.meetupIdTextApp.rawValue,
MeetupId.shouldFormat
)

return true
}
}

+ 5
- 1
src/VM.swift 파일 보기

@@ -3,7 +3,11 @@ import SwiftUI

final class VM: ObservableObject {
@Published var text = "a:"

let format = Bus.Processor(
MeetupId.K.meetupIdTextUI.rawValue,
MeetupId.K.meetupIdTextApp.rawValue,
MeetupId.shouldFormat
)
var subscriptions = [AnyCancellable]()

init() {


불러오는 중...
취소
저장