Hi,
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
if #available(iOS 14.0, *) {
let parameters = NWParameters()
parameters.includePeerToPeer = true
}
}
This error shows up only with XCode 15.0.1 , when the minimum os version is less than 12.0 and on old os version (tested on 15.7.x) . Any other combination will work.
when i changed the min os version to 12.0 it solved the issue.
Thanks
Post
Replies
Boosts
Views
Activity
Same here XCode 15.0.1 - Crash on NWParameters init
Did you find any solution ?