首页 > 代码库 > 美团HD(9)-监听点击城市
美团HD(9)-监听点击城市
DJSelectCityViewController.h
// 点击城市发出通知- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // 1. 发送点击的城市名 DJCityGroup *cityGroup = self.cityGroups[indexPath.section]; [[NSNotificationCenter defaultCenter] postNotificationName:DJCityDidChangeNotification object:nil userInfo:@{DJSelectCityName:cityGroup.cities[indexPath.row]}]; // 2. 关闭当前controller [self dismissViewControllerAnimated:YES completion:nil]; }
DJHomeViewController.m
/** 监听到城市改变广播 */- (void)onReceiveCityChangeNotification:(NSNotification *)notification { NSString *selectedCityName = notification.userInfo[DJSelectCityName]; // 1. 更新当前显示地区 DJNavItem *areaView = self.areaItem.customView; [areaView setTitle:[NSString stringWithFormat:@"%@ - 全部",selectedCityName]]; }
DJConstantValue.m
#import <Foundation/Foundation.h>/* 通知 */NSString *const DJCityDidChangeNotification = @"DJCityDidChangeNotification";NSString *const DJSelectCityName = @"DJSelectCityName";
美团HD(9)-监听点击城市
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。