try this
https://github.com/darioGzlez/FloatingSegmentedControl.git
Post
Replies
Boosts
Views
Activity
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
I'm facing same issues and I have 3 apps that need to be pushed to review before Christmas :(
...
I did not delete the post
bump the build down to 15.1 and try and resume
try bump down to IOS 15.1 and resume
if UIDevice.current.localizedModel == "iPhone" {
} else if UIDevice.current.localizedModel == "iPad" {
}
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) }
}
)
im having same issue after updating to the new Xcode Version 16.0