[[NSNotificationCenter defaultCenter] postNotificationName:@"postCity" object:pro]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(cityCallBack:) name:@"postCity" object:nil]; - (void)cityCallBack:(NSNotification *)notification { if (nil != notification.object) { ProvinceModel *obj = (ProvinceModel *)notification.object; [addresslbl setText: obj.cityName]; } }
相关文章
- 10-23python遍历并获取对象属性--dir(),__dict__,getattr,setattr
- 10-23【随记】实体对象深拷贝
- 10-23对象转换数组
- 10-23使用BufferedReader和BufferedWriter两个对象复制文件
- 10-23System.out.println(对象)
- 10-23vue组件传值和路由——day04
- 10-23day14(带参装饰器,迭代器,生成器,枚举对象)
- 10-23django 获取request请求对象及response响应对象中的各种属性值
- 10-23如何将ISO 8601日期时间字符串转换为Python日期时间对象?
- 10-23C++解析(13):临时对象与const对象