It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am developing an iOS application in which I provide a facility to find the distance, average speed, calories, time etc. according to a walking path.
Now I want to find the elevation of my walking according to distance and speed. I also want to draw the elevation graph of my walking path. I have searched a lot for that but I can't find a solution.
You can use the google elevation api
It returns the data in JSON format. You just need to add SBJSON to your xcode project. And then send the NSURLReuest in the following manner :
http://maps.googleapis.com/maps/api/elevation/json?locations=39.7391536,-104.9847034&sensor=true
Everything from here is just a cakewalk if you know how to parse JSON response :)
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
If anyone has any similar project and could share it i would appreciate it very much.
You'd start with an NSTimer Object. Do Research on it. IN particular there's a parameter that specifies duration float and repeats boolean. Then do some reasearch on the built in Libraries and Frameworks that uses your iPhone Location Services. From there you can get the coordinates, Long and Latitude. There is also a sample project on Apple's Developers site that has Location Services detailed in a dummy down project sample.
Also you can take the long and lat and send it into GEO Services provided by Google Maps, and Locations APIs that will reverse lookup your long/lat into ZIP, City, Street Address Burrough, etc, etc. Please do some research and hopefully this will point you in the right direction(s).
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to make an emailing application but I wanted to know if there is maybe already an application that provides their source code so I could get a head start. Like maybe just the simple concept of placing emails in a table view and retrieving them from a server. If there is anything out there please let me know.
If you do a google search, you should be able to find what you are looking for. Here are some I found.
http://mobile.tutsplus.com/tutorials/iphone/mfmailcomposeviewcontroller/
http://m.youtube.com/#/watch?v=ECkJh2mnFc8&desktop_uri=%2Fwatch%3Fv%3DECkJh2mnFc8
The geeky lemon drop one is pretty good.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I took a picture from iPhone camera.Now I want to scan the image like X-Ray scanning. Let consider I took a picture of an arm and then by programming/Algorithm it will scan the photo and will display the bone inside the arm. Are there any image processing library which can do similar type of thing?
I have tried to get the upper thing by several things provided by apple using core image but did not get anything which I am looking for.
https://developer.apple.com/library/mac/#documentation/graphicsimaging/Conceptual/CoreImaging/ci_intro/ci_intro.html
Does anybody have any solutions regarding this?
Thanks
No. What you are asking for is fundamentally impossible -- the iPhone camera cannot see through solid objects. (And I can't believe I just had to say that.)
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I recently found this app, called Atoms in Motion, I want to use the same kind of visualisation in a different app, does anyone know how the real-time visualisation would be done, or have any suggestions for a language I could use to do this? The user needs to be able to interact with the app, for example in Atoms in Motion you can swipe your finger to increase the temperature.
Cheers for any help
http://www.raywenderlich.com/457/intro-to-box2d-with-cocos2d-tutorial-bouncing-balls
In a few words,
1) download cocos2d-iphone
2) use chipmunk or box2d (both included in cocos2d-iphone) to simulate mechanics you need.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Today I read abouts this on hacker news https://github.com/udibr/bitcoinApp which is an interesting app, and is a good resource to learn from.
Do you know about some other open source iOS apps from where I can enrich my iOS/objective-c knowledge?
From a game programmer perspective (mine)...
You can check cocos2d engine.
Oolong Engine (for 3D OpenGL ES).
Also, Canabalt went open source.