Skip to main content

https://github.com/ioscreator/ioscreator

Comments

Popular posts from this blog

Common API Request Class

// //    Connection.swift //    Norwood // //    Created by Praveen Reddy on 10/01/19. //    Copyright © 2019 Apple. All rights reserved. // import  Foundation import  Alamofire import  SwiftyJSON class  Connection {           func  requestPOST( _  url:  String , params :  Parameters ?, headers :  HTTPHeaders ?, success: @escaping  ( Data ) ->  Void , failure: @escaping  ( Error ) ->  Void )      {                   print( "URL = " ,url)          print( "Parameter = " ,params!)                   //          if Connectivity.isConnectedToInternet() //          {              i...

Network Reachability

import  Foundation import  Alamofire class  Connectivity {      class   func  isConnectedToInternet() -> Bool      {          return  NetworkReachabilityManager()!.isReachable      } }