Search results for

Apple Maps Guides

149,521 results found

Post

Replies

Boosts

Views

Activity

Reply to Layout constraints don't work in storyboard's second scene
I've appended the code for GameController.swift below. To actually reproduce the bug, you need an image file Card Back.png in the project. It has a resolution of 672x1038 pixels.Create a new iOS Swift Single View Application project.Add Game Controller.swift and Card Back.png to it.In IB, change the view controller class to GameController.Drag a second view controller into the story board and change its class to GameController, too.Create a seque from the first to the second scene. (I added a Tap Gesture Recognizer to the first scene and created a Present Modally seque to the second scene; a Push/Show seque will give the same result.)Run the app on the iPhone simulator. You will see a 5x6 grid of copies of the Card Back image.Tap anywhere on the view to present the second scene.You will see part of one really big card back image.If you do Debug > View Debugging > Capture View Hierarchy and click Show Clipped Content, you will see that there is actually a grid of 672x1038 image views, which obviously doe
Topic: UI Frameworks SubTopic: UIKit Tags:
Apr ’16
Guide iPhone 6s + downgrade to OS10.3
HiIs there any offical safe method or guide to downgrade the iPhone 6s Plus to OS10.3?I am using cross platform tools (NOT xCode) to develop Apple apps. I try to debug the apps through Mac Mini and iPhone 6s Plus. The development enviroment has OS10.3 stable version supported.I want to downgrade to OS10.3 to debug. Is there any 'Safe & Detail' steps or offical guide to follow?Thank you for your assistance.Dko
0
0
630
Feb ’18
Maps and Location issue
If I use Maps or a program that must somehow use my location, is there any way that an app or the Apple IOS could NOT disclose my location? I need a way to find destinations, but not disclose my location. Can that be developed? Or, for whatever reason, can you say you are in a certain location when you are not? It kind of defeats the purpose, but....
0
0
297
Feb ’17
Guide through MDM Process
I'm developing an app that has a URL blocking feature(Web Content Filter). Want to upload on the app store so any user can download the app. To do that I've to set up MDM server. I've Company / Organization account. Can anyone guide me through MDM Process? I have a few questions. What kind of account is needed? What things need to be done from the app(mobile) side? What things need to be done from the server-side? What will be the procedure to create MDM profile and distribute it to the app store user.
0
0
560
May ’22
Reply to Should I update to 10.15?
It would be best to install 10.15 on a properly formatted (APFS with a GUID Partition Map) external drive. You would be able to boot from it when you want to experiment with 10.15. Then you could always boot back to your internal drive (probably running Mojave) without fear of messing it up. A small SSD external drive would give you the best speed.
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’19
Reply to Searching Apple Maps
I would like to complain of Apple Map inaccuaracy! 95% of people who using APple Map and coming to my office were guided to another city. Its 1755 E Huntington Dr, Duarte, California 91010. Apple Map guided to Monrovia City! It's annoying and I am loosing cumtomers because of Apple Map inaccuracy!
Topic: UI Frameworks SubTopic: UIKit Tags:
Jul ’16
showing route taken during walk or run on map.
Hi, I want user to be able to see the route he takes during walk or run on a map, while he is walking and after in history. I have got the users location and loaded a map. From what i have read, i'lll have to continuously annotate the map with a marker while the user is walking or running. But I don't clearly understand the MapKit apis for annotation and annotation view. Can someone guide me how to go about it. I just need an overview. Thanks
1
0
502
Aug ’20
Map with listings aggregator possible?
Working on marketplace app where listing are displayed on map. If there are let's say 100 listings within certain radius, I want to aggregate these pins in a circle with number 100. When user clicks on this number MAP should zoom-in and display circle with say, 50, 30 ,10, pins... depending on zoom level. It is possible with google maps API. Can this be achieved with Apple MAPS ?
1
0
524
Jul ’21
SwiftUI Map Annotation Clustering
I am creating an application which utilizes SwiftUI and Apple's MapKit api. The goal is to create a map with custom annotations, I have been successful in this quest however I am having issues with Map Annotation Clustering. I suppose what I'm looking to determine is if I am required to use UIKit with MKMapView in hopes to be able to create clustering map annotations or if there is a method utilizing the above aforementioned SwiftUI Map Struct along slide the MapAnnotation Struct to complete this task?
1
0
3.0k
Jul ’21
Explain Map() position
Hi, Can someone explain how the Map() position should work? struct ContentView: View { @State private var position: MapCameraPosition = .userLocation(followsHeading: true, fallback: .automatic) var body: some View { Map(position: $position) { UserAnnotation() } } } I was expecting the map to zoom in to users location but it shows the map zoomed out to the max instead. Location is authorized. I've also added the location button. .mapControls { MapUserLocationButton() } Pressing it zooms in to the user's location without issues. Thanks!
1
0
1.5k
Jun ’23