skip to Main Content

How to open alertcontroller after pressed TabBar? – Ios swift

import UIKit class TabBarController: UITabBarController, UITabBarControllerDelegate { override func viewDidLoad() { super.viewDidLoad() view.backgroundColor = .white self.delegate = self let vc1 = UINavigationController(rootViewController: VideoListVC()) let vc2 = UINavigationController(rootViewController: AddViewController()) let vc3 = UINavigationController(rootViewController: FabricViewController()) vc1.tabBarItem.image = UIImage(systemName: "house") vc2.tabBarItem.image = UIImage(systemName:…

VIEW QUESTION

Swift Compile Error – Undefined symbols for architecture arm64 – Ios swift

I'm getting this error on my Swift iOs app when I try to compile: Undefined symbols for architecture arm64: "checkForiOS14 #1 () -> Swift.Bool in App_Clip.NoteView.(reminderSymbolName in _82CBB329F1D225F83535F59E6FD7F4C3).getter : Swift.String", referenced from: App_Clip.NoteView.(reminderSymbolName in _82CBB329F1D225F83535F59E6FD7F4C3).getter : Swift.String in NoteView.o ld:…

VIEW QUESTION
Back To Top
Search