美团HD-监听点击城市
Posted 夜行过客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了美团HD-监听点击城市相关的知识,希望对你有一定的参考价值。
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-监听点击城市的主要内容,如果未能解决你的问题,请参考以下文章
Android Studio 仿首页美团切换城市(ListView)+数据库帮助类SQLiteOpenHelper+LetterView(字母排序)