0
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【初心者】Swift UIを勉強する その⑤ ーーーToolbarとファイル管理

Posted at

はじめに

Toolbarは2020年リリースした新しい機能です。今日からこれを勉強していきます。
また、ファイル数がだんだん増えてきたため、どういうふうに管理すれば良いのかも見ていきましょう。

目次

  1. [Toolbar in iOS](#Toolbar in iOS)
  2. [Toolbar in macOS](#Toolbar in macOS)
  3. ファイル管理
  4. まとめ
  5. 参考文献

Toolbar in iOS

・Toolbar画面の一番上と下の部分、safeAreaとnavigationBarと若干似ていますけれども、クロスプラットフォームできるのが魅力的です。

Sildebar.swift
# if os(iOS)
content
    .navigationTitle("Learn")
    .toolbar {
       ToolbarItem {
           Image(systemName: "person.crop.circle")
       }
     }

   

toolbar(placement: )で場所は自由に変更することもできます。bottomBarにしたら画面の一番下に持っていきます。

Sildebar.swift
# if os(iOS)
content
    .navigationTitle("Learn")
    .toolbar(placement: .bottomBar) {
       ToolbarItem {
           Image(systemName: "person.crop.circle")
       }
     }

Toolbar in macOS

・macの場合はiOSのtoolbar(placement: )をそのまま使えません。
・前回の記事のように、iOSとmacOSとそれぞれの処理を行います。また、placement:もmacが使えるアイテムに変更します。

Sildebar.swift
# else
content
    .navigationTitle("Learn")
    .toolbar(placement: .automatic) {
       ToolbarItem {
           Image(systemName: "person.crop.circle")
       }
     }
# endif

imageだけじゃなく、Buttonにするのもできます。

Sildebar.swift
# else
content
    .navigationTitle("Learn")
    .toolbar(placement: .automatic) {
       ToolbarItem {
          Button(action: {}) {
              Image(systemName: "person.crop.circle")
          } 
       }
     }
# endif

ContentView.swiftに1回目の記事で書いたカードのコードをそこに置かないべきです。
 bodyの中身を全部新しいファイルCourseItem.swiftに移します。
ContentView.swiftにはSidebar()を呼び出して、os別の処理を追加します。

ContentView.swift
struct ContentView: View {
    @ViewBuilder
    var body: some View {
        #if os(iOS)
        Sidebar()
        #else
        Sidebar()
            .frame(minWidth: 1000, minHeight: 600)
        #endif
    }
}

ファイル管理

・綺麗なコードを書くための教材は無論Appleのオフィシャルドキュメントです。
・Appleのオフィシャルドキュメントを参考に分類しましょう。

まとめ

・今回までは特に難しい内容がなかったと思います。次回も頑張っていきましょう。

ソースコードGithub

参考文献

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?