فهرست منبع

error handling

the example code did not compile without adding a try and do/catch
abunur 10 سال پیش
والد
کامیت
9ade4cbbb7
1فایلهای تغییر یافته به همراه5 افزوده شده و 1 حذف شده
  1. 5 1
      README.md

+ 5 - 1
README.md

@@ -119,7 +119,11 @@ NSNotificationCenter.defaultCenter().addObserver(self,
                                                  name: ReachabilityChangedNotification,
                                                  object: reachability)
 
-reachability.startNotifier()
+do{
+      try reachability.startNotifier()
+    }catch{
+      print("could not start reachability notifier")
+    }
 ```
 
 and