DistCalApp is an application used for performing long-distance computation tasks. DistCalApp is an application that allows users to calculate the distance between two different places and present the results in meters, kilometers, and miles. I developed this project to improve my skills in Objective-C programming.
- Strengthen proficiency in Objective-C programming language
- Gain practical experience in developing iOS applications using Objective-C
- Implement design patterns and architectural principles in Objective-C projects
- Improve code readability, maintainability, and efficiency in Objective-C codebases
- Calculate distance between two places
- Present distance in meters, kilometers, and miles
- User-friendly interface
To get started with the project, follow these steps:
- Clone the repository to your local machine:
git clone https://github.com/iammertozcan/DistCalApp.git
- Install the required dependencies using CocoaPods. Navigate to the project directory and run:
pod install
- Open the project in your preferred IDE (e.g., Xcode) using the
DistCalApp.xcworkspace
file. - Run the application and start using it to calculate distances!
- Enter the name of the two places you want to calculate the distance between(e.g., Paris, Istanbul, Seattle).
- Select the desired units (meters, kilometers, or miles).
- Click the "Calculate Distance" button to see the distance between the places in the chosen units.
- The application will display the calculated distances in the specified units.
Contributions are welcome! If you'd like to contribute to this project, please follow the steps below:
- Fork this repository (https://github.com/iammertozcan/DistCalApp)
- Create a new branch for your feature or bug fix:
git checkout -b feature/NewFeature
- Commit your changes:
git commit -am 'Added a new feature'
- Push your branch to your fork:
git push origin feature/NewFeature
- Create a new Pull Request.
If you have any questions or feedback, please reach out to us at [email protected].
This project uses the DistanceGetter pod for calculating distances. Ensure that you install the required pods by running pod install before opening the project in Xcode.