Skip to main content

Posts

Around2Me – Instantly Discover Nearby Essentials

In today’s fast-paced world, finding what you need — exactly when you need it — should be effortless. That’s where Around2Me comes in. Whether you're navigating a new city, running errands, or just looking for a bite nearby, Around2Me helps you instantly find nearby essentials like ATMs, restaurants, hospitals, gas stations , and much more. Around2Me 🚀 What Makes Around2Me Different? Unlike many location-based apps that are bloated with unnecessary features or force users to sign up, Around2Me is lightweight, private, and instant . Here's how: 📍 Location-Based Discovery The app instantly detects your current location and shows you relevant nearby places — from pharmacies to petrol pumps, cafes to banks. 🗺️ Map Integration Tap any place to view it on the map and get turn-by-turn directions in seconds. 🧩 Clean Categories Looking for something specific? Use quick-access filters like Hospitals , ATMs , Coffee Shops , or Parking . 🔐 No Signups, No Data Collection ...

How to Creating A Web Browser With in WKWebView

Create a simple Application open web URL in to WKWebView! or open web Browser WKWebView. iOS Developer Live - There are Two Different Type open url with web view, UIWebView or WKWebView. Before iOS 8.0 Used UIWebView. Now After iOS 8.0 or Later apple introduce A New Claas WKWebView in the Library  WebKit. WKWebView faster to fast load webpage and more batter than UIWebView, its do not overload memory. Example  Add code your ViewController class import UIKit import WebKit class ViewController: UIViewController , WKNavigationDelegate {          var webView : WKWebView !          override func viewDidLoad() {         super . viewDidLoad ()                  // loading URL :         let studyPlusUrl = " https://www.iosdeveloperlive.com/ "         let url = URL (string: ...

Control Flow Statements - statements used in swift

List out what is the control transfer statements used in swift Control flow statements are used to control the flow of execution in a program. There are several types of control flow statements in Swift, including loop statements, branch statements, and control transfer statements.  1.        Loop statements allow a block of code to be executed repeatedly 2.         Branch statements allow a certain block of code to be executed only when certain conditions are met 3.        Control transfer statements provide a way to alter the order in which code is executed. 4.        Swift provides a do statement to introduce scope, and catch and handle errors, 5.        Defer statement for running cleanup actions just before the current scope exits. Loop Statements - Loop statements allow a block of...

Enum & Enumeration in Swift 4

An Enum & Enumeration consists of integral constants " An enumeration is a user-define data type which consists of a set of related value" Is used to define enum keyword"  enum type { const1, const2, const3, .......} enum week {           case Monday           case Tuesday          .....          case Sunday } Swift Example :- enum Country {    case India    case America    case Russia    case Chaina } var power = Country.America power = .America switch power {    case .India:       print("India Country is No 4")    case .America:       print("America Country is No 1")    case . Russia:       print("Russia Country is No 2")    case . Chaina:       print("Chaina Country is No 3") } ...

Rest Api in swift 4 Using URLSession And JSONSerialization Xcode 9 Example

A Short Example call Rest Api with JSON Foundation framework NSURLSession and NSJSONSerialization - Getting Started - Basic Rest API request with Swift 4 func restApiRequest(){ let sessionConfig = URLSessionConfiguration.default // Session Configuration         let sessionUrl = URLSession(configuration: sessionConfig) // Load configuration into Session         let url = URL(string: "YOUR URL STRING")!         let task = sessionUrl.dataTask(with: url, completionHandler: {             (data, response, error) in                 if error != nil {                     print(error!.localizedDescription)                 } else {                     do {                 ...

iOS MapKit Tutorial: Getting Started Search Location and Directions on Mapkit

MapKit  is a really useful API available on iOS devices that makes it easy to display maps, user locations with locality, and even draw routes your location to your destination. Getting Started User Location Create a new project single view appplication in Swift. - MKLocationMap Open Info.plist from the Project navigator and configure the location permission prompt message  NSLocationWhenInUseUsageDescription Add "NSLocationAlwaysAndWhenInUseUsageDescription" instead of "Privacy - Location Always and When in use usage description". ViewController.swift: import UIKit import MapKit protocol HandleMapSearch {     func dropPinZoomIn(placemark: MKPlacemark ) } class ViewController: UIViewController {     let locationManager = CLLocationManager ()     var resultSearchController: UISearchController !     var selectedPin: MKPlacemark ?    ...

How to Get Started Firebase UI Auth Provider Swift 4 iOS

I am starting a tutorial how to install a firebase Authentication in iOS Swift application and how to use Firebase UI Auth. You can use Firebase Authentication to allow to users different type login your application or sign In / sign Up   with including email id or password, with facebook login, twitter, Gmail, pinterest or more social account authentication. This blog post help you started, how to start firebase UI auth. Create a account firebase Console. If you have a Google account already then you are active only firebase console Open https://firebase.google.com/ and go to seen right side - GO TO CONSOLE Click add project -> Type project name and if you mind customize project id and select your country code then accept term or condition create project. Next Go to dashboard overview and select your app platform. Now if you add ‘Add Firebase to your iOS app’, Then Copy your bundle ID past after type your nick name did you like, This is the bundle ident...

Facebook Login - Facebook Authentication and Cocoapods

Create a new application facebook login and authentication a facebook user using their iOS SDK with Cocoapods. Below are the steps in which we'll be following:   First Getting Started guide from Facebook's iOS SDK Documentation   Create a new iOS project Swift Open facebook Developer Account and create new App after go to setting and click basic -> add platform ios https://developers.facebook.com/docs/ios/getting-started https://developers.facebook.com/ Then add Bundle id your ios project like com.xxxx,  Configuring Facebook with Bundle ID Then go  ahead  Download facebook sdk for ios other wise install pod file your project. Go  ahead  to open terminal and go  ahead  your project folder.   Got create podfile -> pod init Open podfile -> open podfile Paste ->   pod 'FBSDKCoreKit'                 pod 'FBSDKShareKit'    ...