ahmedattia213
5/14/2020 - 6:16 AM

Notification Center

 func notifCenter() {
        let name = NSNotification.Name(rawValue: "updateWhatever")
        NotificationCenter.default.post(name: name, object: nil)  //e3mel post fe ay 7etta 3yz te send el notif ba3d mte7sal
        
        //in viewdidload observe this b2a
        NotificationCenter.default.addObserver(self, selector: #selector(whatHappensFunc), name: name, object: nil)
    }