I'm a VERY new coder. I made 3 apps so far but i'm not satisfied with those apps (They're too easy to make). I recently had an idea, locating the closest gas station and displaying the cheapest one near the user. Now, i know it's possible i just don't know the steps in order to put this app together. iPhoneSDK wasn't helpful, most reply i got was something like "Go read this book to learn the whole objective-C language". All i want is someone to guide me in the right direction. I'm pretty sure i need some kind of database to do an app like that, That's all i know. Again, if you're going to answer something like: "This app can't be made by a beginner", please don't even bother commenting. Thanks!
objective-C creating an app with GPS and specific shop finder
128 Views Asked by JLS At
1
There are 1 best solutions below
Related Questions in OBJECTIVE-C
- How to control the volume of an iPhone programmatically in objective-c
- Occasional crash at NSURLSessionDataTask dataTaskWithRequest:completionHandler:
- How to set value the descriptor of iOS BLE in Objective-C?
- Unexpected #selector() Behavior in Swift-Objective-C Interop?
- In what context can we use an unqualified #selector() expression in Swift?
- AVPictureInPictureController crashes during initialization
- How to use pow() in Objective-C?
- How to change the image on the MGSwipeButton in MGSwipeTableCell
- Using sort descriptors in Outline View
- Why is my Swift function not printing from inside the dataTask closure?
- Using UICollectionViewCell with IBOutlet
- Undefined symbol: _OBJC_CLASS_$_ only on simulator
- Why can't I receive a notification sent from Camera Extension(Swift) to an observer application (obj-c++)
- Behavior of __block modifier in objc
- Inserting subview into view where I've added subviews and sublayers
Related Questions in GPS
- Query Overpass turbo by lat/lon to find specific tags
- SQL: Assigning occasion numbers to GPS points when visiting places based on conditions
- Updating Ublox module via commandline with file
- Why does getting the speed in my android app fluctuate too high even when not moving while in the app "GPS Test" it shows 0?
- Unity - AR - GPS (Simple 3D Objects Appear at GPS coordinates) - Android and iOS
- Android location is providing timestamps in the future, or am I stupid? Try it for yourself
- Convert data of the format [longitude, latitude, altitude] into the format [x, y, z]
- How to program GNSS with SIMCOM A7670 and Arduino
- convert hatanaka to rinex for multiple files
- Calculating a DateTime in a Specific Encoding in C#
- GPS neo and Arduino mega 2560 with other sensors
- Receiving Data from Teltonika FMB140 Device via SIM on Server using CodeIgniter 4
- Load IGC file as Simple Features in R
- Android Java - LocationListener taking too long too fetch location even with stable connection
- Is there a function to isolate rows of data based on the distance between the start and stop of their GPS coordinates?
Related Questions in IPHONE-SDK-3.0
- How i can set the auto print symenteneously 3-4 prints on epson tm-m30 printer
- How to encrypt data in objective c and decrypt in mac using terminal
- UIImagePicker shows black space at bottom after dismissing it
- Set Minimum Zoom Level For MKMapView in iOS
- How to drag and reorder UITableViewCell from one UITableView to another similar to trello app?
- Communication over wifi or wirless access points in iOS device
- Audio Visualizer with AVQueuePlayer
- objective-C creating an app with GPS and specific shop finder
- Get facebook events around location
- ImagePicker Crash - select image from library and set in an UIImageView when use AutoLayout
- bringSubviewToFront + setFrame doesn't work
- How to get the proper URL from this tag value?
- Round top corners in UITableView
- How to include FFMpeg library in iphone project
- Convert Hexadecimal to NSData
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Your question is getting downvoted because you're asking an extremely large scale question that comes across as "How do I build my app". There are millions of ways to answer this question, but the decisions need to be made by you. This app CAN be made by a beginner, if you're patient, persistent, and resourceful. Break your larger problems into smaller segments and learn those one by one. Something like this would be a way to break down your problem.
Step 1: Google "How to find user's location in iOS"
Step 2: Google "Gas station api" this was literally the first result:
http://www.mygasfeed.com/keys/api
Step 3: Google "How to make an HTTP request in iOS"
Step 4: Google "How to use JSON in iOS"
Step 5: Put them all together.