InterviewSolution
Saved Bookmarks
| 1. |
You are done with the implementation of the map-based navigation application. How you will test navigation routing on your simulator. |
|
Answer» As iOS developers we know, BUNDLE ID is a string that UNIQUELY identifies an application in the APP store. So while developing the app we have to choose unique bundle-id for our app. Apple recommends reverse DOMAIN name for this, like com.yourCompany.yourApp For the above SCENARIO. As apple guidelines say, once your application successfully uploaded to store, you can’t change the bundle ID later. So always make sure that you choose a bundle identifier that makes sense for the project and the owner. |
|