Tnx so much for this explanation, why swiftUI only support it, in future is it possible to support sub ios 13 version? If I use with in UIKit project it will still not support?
iOS 13 is available on iPhone 6s or later (including iPhone SE). Here's the full list of confirmed devices that can run iOS 13:
iPod touch (7th gen)
iPhone 6s & iPhone 6s Plus
iPhone SE & iPhone 7 & iPhone 7 Plus
iPhone 8 & iPhone 8 Plus
iPhone X
iPhone XR & iPhone XS & iPhone XS Max
iPhone 11 & iPhone 11 Pro & iPhone 11 Pro Max
tnx much for ur answer, I have storyboard and in my storyboard I have forget password label, I want to click the this label and open "ForgotPasswordEmailCheckController". ForgotPasswordEmailCheckController is a view write programmatic , I did'nt use storyboard for ForgotPasswordEmailCheckController. How can I connect to ForgotPasswordEmailCheckController? Any suggestion ? :)
I want to use like that function func showAppDetailForApp(_ app: App) { let layout = UICollectionViewFlowLayout() let appDetailController = AppDetailController(collectionViewLayout: layout) appDetailController.app = app navigationController?.pushViewController(appDetailController, animated: true) } but how can use for forget password label?
I was using this transition. " @IBAction func goSecond(_ sender: Any) {
let controller = SecondView()
navigationController?.pushViewController(controller, animated: true)
}
"
but I still do not understand how I will solve it
Tnx so much for this explanation, why swiftUI only support it, in future is it possible to support sub ios 13 version? If I use with in UIKit project it will still not support?
iOS 13 is available on iPhone 6s or later (including iPhone SE). Here's the full list of confirmed devices that can run iOS 13:
iPod touch (7th gen)
iPhone 6s & iPhone 6s Plus
iPhone SE & iPhone 7 & iPhone 7 Plus
iPhone 8 & iPhone 8 Plus
iPhone X
iPhone XR & iPhone XS & iPhone XS Max
iPhone 11 & iPhone 11 Pro & iPhone 11 Pro Max
tnx much for ur answer, I have storyboard and in my storyboard I have forget password label, I want to click the this label and open "ForgotPasswordEmailCheckController". ForgotPasswordEmailCheckController is a view write programmatic , I did'nt use storyboard for ForgotPasswordEmailCheckController. How can I connect to ForgotPasswordEmailCheckController? Any suggestion ? :)
I want to use like that function func showAppDetailForApp(_ app: App) { let layout = UICollectionViewFlowLayout() let appDetailController = AppDetailController(collectionViewLayout: layout) appDetailController.app = app navigationController?.pushViewController(appDetailController, animated: true) } but how can use for forget password label?
I was using this transition. " @IBAction func goSecond(_ sender: Any) {
let controller = SecondView()
navigationController?.pushViewController(controller, animated: true)
}
"
but I still do not understand how I will solve it