Post not yet marked as solved
I am using XCode 13.1 and wondering a way to execute XCode->File->Packages->Reset Package Cache on terminal. I see my CI machine is failing every time not for specific package but some random package. And when manually do XCode->File->Packages->Reset Package Cache, it resolves the package graph properly.
I already tried clearing DerivedData and also clearing /Users/bostonsamddv/Library/Caches/org.swift.swiftpm with no luck :(
Any help will be appreciated.
I have my version of the app already approved for the App Store and released for my customers. Now I want to invite some of the external testers to test this version. Can I use the already reviwed build in this case? Is there any impact on App Store version?
Currently I have app in US App Store and would like to invite a user from EU to test the same app. Sharing the app link would work for the EU user or they have to be in US App Store only?
I am using default navigationBar with large title and searchBar in navigation item. The problem I am having is when the tableView is scrolled down to see the refreshControl, then navigationBar also increases its height which i want to avoid.So here is my setupNavigationController with RootViewController This contains Container View with following navigation bar and two controllers -
NavigationBar with
Large TitlesSearch Controller inside NavigationitemViewController(VC1) has
TableView
Refresh View Controll added into table viewViewController(VC2) has
TableView
Refresh View Controll added into table viewSelecting cell from either of the TablView push another ViewController(VC3) which has -
Inferred NavigationBar with
Large TitlesSearch Controller inside NavigationitemTable View
Refresh control added into TableViewMy problem statement is - When I pull down table view in VC3, navigation bar height also increases which I dont want to.
I am using MKMapView with default annotation. I would like to show map view and show use with all annotations. And when user taps on them, then they should behave same as in default map app. Basically, I would like to give same feature as in map app in my iOS app map view.
Post not yet marked as solved
I would like to track when each UIViewController comes to foreground. Now, I can do that in each viewDidAppear which I dont want. Because I have almost 60+ viewControllers. So looking for one place where I can put my two line of the code rather than in each viewDidAppear?