Post

Replies

Boosts

Views

Activity

Reply to Xcode 9.2 is it supports macOS Big Sur
I don't think so: you will be able to download, but not to run old version (prior XCode 10 or 11 I think) of Xcode. You should in fact see the icon barred to tell it's not compatible. You will find a complete table here: https ://xcodereleases. com You may have to launch from Terminal: https://stackoverflow.com/questions/64983664/is-it-possible-to-run-xcode11-in-macos-big-sur
Apr ’21
Reply to UIWebView support end date
You're right. Apple official site (https://developer.apple.com/news/) updated april 8, says: Deadline extended for app updates using UIWebView  October 8, 2020. Apple designed WKWebView in 2014 to ensure that you can integrate web content into your app quickly, securely, and consistently across iOS and macOS. Since then, we’ve recommended that you adopt WKWebView instead of UIWebView and WebView — both of which were formally deprecated. New apps containing these frameworks are no longer accepted by the App Store. And last year, we announced that the App Store will no longer accept app updates containing UIWebView as of December 2020.  However, to provide additional time for you to adopt WKWebView and to ensure that it supports the features most often requested by developers, this deadline for app updates has been extended beyond the end of 2020. We’ll let you know when a new deadline is confirmed. I advise you to contact Apple support directly. When they announced at the end of 2019, they gave a 12 months time to comply. My personal guess is that there should be also several (3 ? 6 ?) months left once Apple announces the new date. But you should speed up, as new iOS release could make it impossible to support UIWebView.
Topic: UI Frameworks SubTopic: UIKit Tags:
Apr ’21
Reply to Problem With Filter
In case 1, you have a condition which is always false: return player.yahooName!.lowercased().contains(searchText.lowercased()) && player.position == "C" && player.position == "RW" && player.position == "LW" player.position cannot be simultaneously the 3 different values. May be you need:          return player.yahooName!.lowercased().contains(searchText.lowercased()) && (player.position == "C" || player.position == "RW" || player.position == "LW")
Topic: Programming Languages SubTopic: Swift Tags:
Apr ’21
Reply to Problem With Filter
Thanks Claude. I solved my filtering with the other scopes How did you solve ? By correction the logical expression as I proposed ? but the thing that lingers is I can't delete all the characters in the searchBar unless it's on scope 0 and once I delete characters I can't switch to any scope unless it's scope 0.  What happens when you delete all char in search bar ? Can you delete all but the last ? One difference I see, is that in case 0 you clear the allTextArr array (what a bizarre name for [CurrentPlayers] array) and you reload them in other cases. Could you show the code of: fetchAllPlayers()
Topic: Programming Languages SubTopic: Swift Tags:
Apr ’21