NotificationCenter.default.addObserver(self, selector: #selector(sendAddCategory), name: NSNotification.Name(rawValue: "SendAddCategory"), object: nil)`
【OC编程|OC Swift NotificationCenter通知】
@objc func sendAddCategory(notification:Notification){ let userInfo = notification.userInfo as! [String: AnyObject] let catagoryStr = userInfo["categoryStr"] as! String let catagoryId = userInfo["categoryId"] as! NSNumber }
[[NSNotificationCenter defaultCenter] postNotificationName:@"SendAddCategory" object:nil userInfo:@{@"categoryStr":categoryStr,@"categoryId" : [NSNumber numberWithInteger:categoryId]}];
推荐阅读
- OC编程|OC 创建一个Fraction类(分数)实现分数的加减乘除,比较大小、约分等方法。 要求(为类添加属性)
- Swift 字典 Dictionary基本用法
- swift|swift 获取当前viewcontroller (rootVC)
- swiftc
- 时间戳和字符串之间转换 Swift
- Other|全国银行SWIFT代码查询
- Swift|以太坊Web3Swift常用方法使用
- ios|CocoaPods pod install / pod update 更新太慢 卡死 问题解决