0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Swift, SwiftUIで「⚪︎秒後」を実現する!!

Posted at

結論

以下を実行する!

SampleView.swift
DispatchQueue.main.asyncAfter(deadline: .now() + 5.0) {
    # 以下に5秒後に行いたい処理をかく。
    print("5秒経ちました")
}

上記では、5秒後に、「5秒経ちました」と出力されますね。

まとめ

簡単ですね。
これ以上述べることがないので、今回はこれで終わりにします。

最後に

少しでも参考になれば嬉しいです。
また、個人的に手書き機能を搭載したアプリを開発したいと考えているのですが、手書き機能の実装経験のある方やおすすめの方法等あれば、教えていただきたいです!!(UIkit, SwiftUI)

最後までお読み頂きありがとうございました!!

0
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?