im having same issue after updating to the new Xcode Version 16.0
Post
Replies
Boosts
Views
Activity
try this maybe it will help
struct LazyView<Content: View>: View {
let build: () -> Content
init(_ build: @autoclosure @escaping () -> Content) {
self.build = build
}
var body: Content {
build()
}
}
LazyView(
MapAnnotation(coordinate: CLLocationCoordinate2D(latitude: mark.lat, longitude: mark.long)) {
Button {withAnimation {
self.selectedGymUid = Int(mark.uid)
}} label: {RoundedGymIconOnMapView(name:mark.name)
.clipShape(Circle())
.overlay(Circle().stroke(selectedGymUid == Int(mark.uid) ? Color(.green).opacity(0.5) : AppColor.shared.joggingColor.opacity(0.5),lineWidth: 1.4))
.scaleEffect(selectedGymUid == Int(mark.uid) ? 2 : 1)
.shadow(radius: 5) }
}
)
if UIDevice.current.localizedModel == "iPhone" {
} else if UIDevice.current.localizedModel == "iPad" {
}
try bump down to IOS 15.1 and resume
bump the build down to 15.1 and try and resume
I did not delete the post
...
I'm facing same issues and I have 3 apps that need to be pushed to review before Christmas :(
you have to remove Privacy - Tracking Usage Description from the app Info.plist if you don't collect data or you have to correct the App privacy data type under the app in App Store connect
try this
https://github.com/darioGzlez/FloatingSegmentedControl.git