2
2

More than 1 year has passed since last update.

はじめに

Textに使ったことのない機能があったので使ってみました

サンプルアプリ

IMG_3399.PNG

実装

import SwiftUI

struct ContentView: View {
    let tomorrow = Calendar.current.date(byAdding: .day, value: 1, to: Date())!

    let yesterday = Calendar.current.date(byAdding: .day, value: -1, to: Date())!

    var body: some View {
        Text(yesterday...tomorrow)
    }
}

おわり

知らない機能でした

参考記事

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2