首頁 > 軟體

SwiftUI中TabView元件的常規使用

2022-06-16 14:00:27

前言

在UIKit中設定多個tabbar展示需要使用到UITabBarController 在SwiftUI中 由TabView元件來進行實現,同時TabView也可以實現PageViewController的效果,

TabView常規用法1

import SwiftUI

struct ZTMinePageView: View {
    var body: some View {
        TabView{
            Text("設定一").tabItem {
                Image(systemName: "arkit").foregroundColor(.red)
                Text("設定一")
            }
            
            Text("設定二").tabItem {
                Image(systemName: "star")
                Text("設定二")
            }
            
            Text("設定三").tabItem {
                Image(systemName: "star").foregroundColor(.red)
                Text("設定三")
            }
            
            Text("設定四").tabItem {
                Image(systemName: "star").foregroundColor(.red)
                Text("設定四")
            }
        }
    }
}

tabview此時不會繫結對應的selectedIndex,只能在初始化的時候設定對應的index,不能動態設定要展示的tabbar的index,

TabView常規用法2

除了上面的點選tabview切換檢視,SwiftUI還允許我們使用狀態來控制當前檢視。為此 我們需要四步

  • 1.建立一個記錄當前顯示檢視的@State 屬性
  • 2.跳轉到其他tab中的檢視修改該屬性
  • 3.該屬性以Binding的形式傳給TabView,便於自動跟蹤
  • 4.告訴SwiftUI 那種值應該顯示那個Tab

具體的如下:

import SwiftUI

struct ZTTestPageView: View {
    
    @State private var selectedTab = 0
    
    var body: some View {
        TabView(selection: $selectedTab){
            Text("設定一").tabItem {
                Image(systemName: "arkit").foregroundColor(.red)
                Text("設定一")
            }.onTapGesture {
                self.selectedTab = 3
            }.tag(0)
            
            Text("設定二").tabItem {
                Image(systemName: "star")
                Text("設定二")
            }.tag(1)
            
            Text("設定三").tabItem {
                Image(systemName: "star").foregroundColor(.red)
                Text("設定三")
            }.tag(2)
            
            Text("設定四").tabItem {
                Image(systemName: "star").foregroundColor(.red)
                Text("設定四")
            }.tag(3)
        }
    }
}

上面程式碼中當我們點選 設定一介面中的text 這時會修改selectedTab,而我們在上面把TabViewselectedTab繫結到一起了,修改selectedTab的值 TabView也會切換對應展示的檢視。

TabView常規用法3

在上面的用法中沒有辦法對TabbarItem中的圖片做選中和非選中的切換,上面截圖中的變化只是系統對選中和非選中的一個顏色的處理,事實上我們的圖片都是同一個。在實際專案中,點選tabbar切換檢視 底部的圖片也會跟著變化,而且在其他介面中也會動態的修改當前TabView的index。

  • 1.建立一個環境物件,在App啟動的時候設定要展示的初始值,
  • 2.其他要修改的地方 獲取環境變數並修改
  • 3.TabView和環境變數相互繫結,有一方修改 其他方也會跟著變化

1.定義一個全域性的環境變數

import SwiftUI
import Combine

final class TabBarIndexObserver: ObservableObject {
   @Published
   var tabSelected: TabBarItem = .Home
}

2.定義為全域性的環境變數 @EnvironmentObject

import SwiftUI

@main
struct SwiftUITestApp: App {
   var body: some Scene {
       WindowGroup {
           ContentView().environmentObject(TabBarIndexObserver())
       }
   }
}

3.繫結TabView和環境變數,其中要自己自定義一個TabBarItem物件,主要是根據當前TabView中的index 返回 image 和 title,每個展示的檢視都要設定tag 否則繫結檢視一直展示的都是0,不會切換到其他檢視。圖片資源可以自己設定。

import SwiftUI

enum TabBarItem: Int {
   case Home
   case Living
   case Message
   case Mine
   
   var titleStr: String {
       switch self {
       case .Home:
           return "首頁"
       case .Living:
           return "直播"
       case .Message:
           return "訊息"
       case .Mine:
           return "我的"
       }
   }
   
   var normalImage: Image {
       var imageName = ""
       switch self {
       case .Home:
           imageName = ""
       case .Living:
           imageName = ""
       case .Message:
           imageName = ""
       case .Mine:
           imageName = ""
       }
       return Image(imageName)
   }
   
   var selectedImage: Image {
       var imageName = ""
       switch self {
       case .Home:
           imageName = ""
       case .Living:
           imageName = ""
       case .Message:
           imageName = ""
       case .Mine:
           imageName = ""
       }
       return Image(imageName)
   }
}

TabView中進行對應的設定,給每一個檢視設定一個唯一的標識,用這個識別符號作為被選中的tab,這些識別符號被稱為Tag

import SwiftUI

struct ContentView: View {
   @EnvironmentObject
   private var tabbarIndex: TabBarIndexObserver
   
   private var selectedTab: Binding<Int> {
     Binding(
       get: { tabbarIndex.tabSelected.rawValue },
       set: {
           tabbarIndex.tabSelected = TabBarItem(rawValue: $0)!
       }
     )
   }
   // 設定對應的normal 和 selected圖片 要設定TabView 繫結狀態 和 每個View的tag值,在點選的時候把值傳遞給對應的view
   var body: some View {
    TabView(selection: selectedTab) {
        ZTHomePageView()
            .tabItem {tabItem(for: .Home)}
            .tag(TabBarItem.Home.rawValue)
        ZTLivingPageView()
            .tabItem {tabItem(for: .Living)}
            .tag(TabBarItem.Living.rawValue)
        ZTMessagePageView()
            .tabItem {tabItem(for: .Message)}
            .tag(TabBarItem.Message.rawValue)
        ZTMinePageView()
            .tabItem { tabItem(for: .Mine) }
            .tag(TabBarItem.Mine.rawValue)
    }
    .font(.headline)
    .accentColor(Color.red) // 設定 tab bar 選中顏色

   }

   private func tabItem(for tab: TabBarItem) -> some View {
       print(selectedTab.wrappedValue)
     return VStack {
       tab.rawValue == selectedTab.wrappedValue ? tab.selectedImage : tab.normalImage
       Text(tab.titleStr)
     }
   }
}

TabView常規用法4---做輪播圖

TabView實現輪播圖時不用設定tabItem 需要指定tabView的顯示型別為.tabViewStyle(PageTabViewStyle()) 具體程式碼如下

struct ZTMinePageView: View {
   
   //設定定時器 每2s執行一次 mode為 common 在主執行緒執行 autoconnect 立即開始定時器
   let timer = Timer.publish(every: 2, tolerance: 0.5, on: .main, in: .common).autoconnect()
   
   @State private var bannerIndex = 0
   
   var body: some View {
       if #available(iOS 15.0, *) {
           TabView(selection: $bannerIndex){
               Image("test_1").resizable().scaledToFit().tag(0)
               Image("test_2").resizable().scaledToFit().tag(1)
               Image("test_3").resizable().scaledToFit().tag(2)
               Image("test_4").resizable().scaledToFit().tag(3)
           }
           .background(Color(red: 0.5, green: 0.9, blue: 0.3, opacity: 0.3))
           .tabViewStyle(PageTabViewStyle(indexDisplayMode: .always))
           .onReceive(timer){ time in
               self.bannerIndex += 1
               if self.bannerIndex > 3{
                   self.bannerIndex = 0
               }
           }
           .onAppear{
               
           }.onDisappear{
               self.timer.upstream.connect().cancel()
           }
       } else {
           
       }
   }
}

其中設定了一個定時器,具體效果如下,如果想要動畫 可以自己加上去

總結

到此這篇關於SwiftUI中TabView元件常規使用的文章就介紹到這了,更多相關SwiftUI TabView使用內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com