Swift UserDefault和通知使用

         移动开发主流:安卓和苹果开发,而苹果开发主要运用的开发语言是Object-c,从14年起,苹果新推出一门开发语言(Swift)。Swift语言相对于OC最大的区别,就是Swift语言完全是开源的。而且比OC语言语法更加简洁。

  Swift  UserDefault使用:

        UserDefaults.standard.set("value", forKey: "key")

        letvalue =  UserDefaults.standard.string(forKey:"key")

        print(value!);

Swift 通知使用:

//创建通知,监听通知

NotificationCenter.default.addObserver(self, selector:#selector(noti(noti:)), name:Notification.Name(rawValue:"noti"), object:nil);

//实现通知的方法,

   @objcfuncnoti(noti:Notification){

        print(noti.userInfo!);

    }

//在这里发送通知

overridefunctouchesBegan(_touches:Set, with event:UIEvent?) {

        NotificationCenter.default.post(name:Notification.Name("noti"), object:self, userInfo: ["key":"value","key1":"key1"]);

    }

你可能感兴趣的:(Swift UserDefault和通知使用)