Hi there! I recently got into a discussion with my Java professor. In her style guide she specifically mentions to never use the break or continue keywords in loops as they are, according to her, outdated and unviable. I have tried to prove by counter example when they are more useful than alternatives, without success. This has gotten me wondering if these keywords are actually outdated, I am still a student after all. So I wanted to know from someone at Apple if using break or continue is forbidden, discouraged or fine to use (specifically in java but general guidelines are also fine) and why? Any answer from a current or former Apple employee would help me greatly to have an insight into how the industry handles these keywords and I thank you in advance for your response. If there is a better place to ask this please direct me towards that.
Search results for
Apple Maps Guides
154,017 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
In SwitUI when using a map within a tabview the tab bar color is translucent when the map tab is selected. All of the other tabs the tab bar is opaque. In the view that contains the map, if the map is commented out the tab display is opaque, only when the map is displayed. I have an init in the tabview to set the tab bar parameters: // Set Tab Bar appearance let tabbarAppearance = UITabBarAppearance() tabbarAppearance.configureWithOpaqueBackground() tabbarAppearance.backgroundColor = .blue UITabBar.appearance().standardAppearance = tabbarAppearance UITabBar.appearance().scrollEdgeAppearance = tabbarAppearance In the view with the map I use a ZStack to set the entire screen color: ZStack(alignment: Alignment(horizontal: .center, vertical: .top)) { Color(.blue) .ignoresSafeArea(.all) .foregroundColor(.black) VStack(alignment: .center, spacing: 5) { Spacer() Map() Spacer() } } I've tried using .padding(), frame, removing ignoresSafeArea but the tab b
Hello,can anyone make a guide for developing HomeKit accessories? The HAP spec. just goes over my head, and the other resources are basically useless. I am trying to make accessories with a basic understanding of OOP concepts(about 3 years in school so far(I'm in the 11th grade)). I would like a complete guide from the hardware selection all the way to the coding and setup. thank you. and I am not talking about HomeBridge and the like, I am interested in developing accessories the official way that apple recommends
My app displays a map, and tapping it goes to the Maps app to give directions. My question is, where does it get the start and end points for the journey? On my map, I put two annotations. Does it go from the green pin to the red pin, from the first annotation to the second, or what? I'd also like to specify walking directions, but there does not seem to be a way to do that.
I'm using apple maps to build a feature so users can create and save running/cycling/hiking routes. Currently the map only shows trails and similar local paths after zooming in to what is basically an extreme level. I want the trails and local paths to be more visible on a further, broader level of zoom. APPLE MAPS JS EX: https://trkbucket.s3.amazonaws.com/media/shoe_images/Screenshot_2024-10-23_at_10.52.17AM.png https://trkbucket.s3.amazonaws.com/media/shoe_images/Screenshot_2024-10-23_at_10.52.04AM.png APPLE MAPS iOS EX: https://trkbucket.s3.amazonaws.com/media/shoe_images/IMG_9DDF5C9A320D-1.jpeg Also strange that on iOS the path is visible while more zoomed out whereas JS does not. Please advise how to show these map items at a broader zoom.
Hi, I am new to Swift and looking to build some ping tool using raw socket. Can you point me to some training guides or books as I can understand how to use this library?
In the documentation for custom instruments I see a reference to the advanced modeling guide?Any chance we could make that available to the dozens (yes there are dozens!) of us writing custom instruments?
I can see indoor map for the Los Angeles International Airport is available via my iOS device. I would like to use that indoor map for both our web application and mobile application.Can you advise me how to get started?
i'm trying to display a map with the user location's. I created a file named MapViewController.swift which contains the map, the user location function etc... But when I start the app it still starts the ContentView.swift, So how can I import the mapviewcontroller into the contentview?
Hello,I'm confused why my routing app does not appear in Maps app as a valid routing application. It does not appear even among AppStore routing apps, despite the fact, that when I install my app signed with AdHoc provisioning profile, it appears as routing app in Apple Maps application like nothing was bad. But when I install the same app version from AppStore (it's already there), it is simply missing.What is going wrong here? I have the routing coverage uploaded in iTunes Connect, and it appears to be valid format, I pinned there enttire world so any route defined in Maps app should incorporate my app among routing apps - but it does so only for the AdHoc version, as mentioned earlier. I have no glue, what to do more...
I have been trying to find some documentation on how to add an overlay to a map with the new SwiftUI Map view. There is so much here and it can be difficult to locate the proper apis for everything. Thanks for any help you all have.
Hi there,Does anyone know if there's a way we can use Apple Maps in a promotional film? We're making a promo for a London based company and need to source high res textures of Europe, the UK, Greater London, and finally the specific area of London that the company is based in. This will allow us to stitch together a multilayered map to fly a 3D camera into, from outer space.If it's a credit issue, we can happil credit Apple Maps at the end of the promo. Google, on the other hand, require crediting throughout. So any time their maps are used, you must credit them while their shwon on screen. Which isn't an option.Can anyone advise?Thanks in advance,Charles
Two part question on indoor map1. Can we use the Indoor Airport Maps that avaiable within iOS but on our website, (i.e. non iOS)?2. Can we use the Indoor Airport Maps that avaiable within iOS but on an android application?
When entering a destination on maps and pressing start, my arrow follows the map and not the other way around. If the road is going down, then my arrow is also going down on my screen. This happnes only when i connect it to may carplay in my car. Does anyone know, how I can fix this? Tnx.
Hi everyone,I'm new to iOS dev, and have started with react-native.I'm actively seeking for a design pattern similar to the new iOS 10 Apple Map where you can see a card (or vertical split view) upon clicking on a pin on a map. With the card, you can further slide up to see more information of the pin you selected, and it will occupy the whole screen.Pictures always help, here's what I'm talking about, borrowed from imore.com.https://www.imore.com/sites/imore.com/files/styles/larger/public/field/image/2016/09/maps-ios-10-yelp.jpg?itok=LT47ccBzI can't find this pattern in Apple's design guideline, nor does it exist in react-native or Apple's native components.The closest thing I found is split view, but it doesn't let you split views vertically neither.On the other hand, I've seen iOS apps that implement this design.Here's my 2 questions:Is this a good(consistent) pattern to be used in iOS?How do people implement this and what component do they use in iOS?N