xcode swift 앱에서 인터넷에 연결되어 있지 않은 경우 사용자에게 알려주므로 Reachablity를 사용하고 있습니다. 나는의 ViewController에 내 코드를 구현할 때이 오류가 무엇입니까 :Reachablitiy을 사용하려고 할 때 오류가 발생합니다.
Expected Declaration
나는 또한하지만 일 viewdidload
에 내 코드를 삽입하기 위해 노력했다.
if Reachability.checkIntenetRechable() == false {
let alertView = UIAlertCole: "APP_NAME", message: "Please check your internet connection.", preferredStyle: UIAlertControllerStyle.Alert)
//alertView.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: { (action: UIAlertAction) in }))
alertView.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { (action: UIAlertAction) in
// Put some code for okay button
}))
self.presentViewController(alertView, animated: true, completion: nil)
}
우리는 checkIntenetRechable Reachability.swift 파일() 메소드를 추가해야합니다. –
@ mr-bista Google 편집 내용이 충돌 한 것으로 보이거나 무효화 된 것으로 보이며 오타 및 대소 문자 오류가 다시 발생했습니다. :/(fixed) – Moritz
이 checkIntenetRechable()을 Reachability 파일에 추가 했습니까? 그렇지 않다면 내 게시물 당 추가하십시오 –