摘要: 以前觉得通知比较难搞,总是避免。但是折腾一番后发现真的是个好东西,用起来很好。整理下使用方法。一、首先,在viewDidLoad或者其他地方添加通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateTable:) name:@"updateTable" object:nil];NSNotificationCenter为一个单例模式的类,能调用的方法也比较有限,可以自行查阅api。addobserver:后面的参数为你当前的类,或者你要接收消息的类。selector 阅读全文
posted @ 2012-07-14 17:06 FoxBabe 阅读(631) 评论(0) 推荐(1) 编辑
摘要: UIButton *refreshButton = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 60, 35)]; [refreshButton setBackgroundImage:[UIImage imageNamed:@"cancel_btn.png"] forState:UIControlStateNormal]; [refreshButton addTarget:self action:@selector(updatePictureNews:) forControlEvents:UIControlEventTo 阅读全文
posted @ 2012-07-14 11:16 FoxBabe 阅读(873) 评论(0) 推荐(0) 编辑