InternetCheck in swift It is simple Framework written in swift to check the internet connection in ios .
import InternetCheck
class Something {
if InternetCheck.Isinternetavailbe() == true{
//Do something
}
else{
//Error shows
}
}