首页 > 其他 > 详细

美团HD(9)-监听点击城市

时间:2017-02-15 22:06:04      阅读:154      评论:0      收藏:0      [点我收藏+]

 

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)-监听点击城市

原文:http://www.cnblogs.com/yongdaimi/p/6403400.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!