[[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];
}
}
相关文章
- 04-09NSNotificationCenter 传对象
- 04-09面向对象进阶8.9
- 04-09前端数据的加密和解密--对象解密的坑
- 04-09‘lxml.etree._Element’对象没有属性’write’??? (PYTHON)
- 04-09Python类对象和XML
- 04-09python-如何在从lxml.ElementBase继承的对象中自定义名称空间前缀
- 04-09对象解析
- 04-096.2.2 Spark Act触发《KVRDD》创建, 类似map,聚合(重要),排序,JOIN,ACT《输入出》文本,CSV,JSON,Seq,对象,JDBC《算子综合》词数,PAI,广告,共同好友
- 04-09js创建对象的几种方法
- 04-09第五章 类与对象(案例一)