自定义TabBar

基本自带TabBar来实现自定义

  • 在iOS原生的tabBar中,能够实现按钮的点击事件,能够实现视图控制器的切换等,但是在实际工程中,对于tabBar的要求的功能往往是系统自己实现不了的,所以我们这里就需要用到自定义的tabBar了。
  • demo:传送门

目标

Snip20180606_7.png

分析

Snip20180605_1.png

实现

1.建立新的项目,并去掉原有的

  • ViewController.h
  • ViewController.m
  • Main.storyboard
  • LaunchScreen.storyboard
  • 注意:要去掉info里面的main storyboard base name;

2.创建窗口、设置根控制器、显示窗口

AppDelegate.m文件

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    //创建窗口
    self.window = [[UIWindow alloc] init];
    self.window.frame = [UIScreen mainScreen].bounds;
    
    //设置根控制器
    self.window.rootViewController = [[ReginaVickyTabBarController alloc] init];
    
    //显示窗口
    [self.window makeKeyAndVisible];
    
    return YES;
}

3.自定义标签控制器(继承自UITabBarController)和创建导航栏控制器(继承自UINavigationController)

  • 创建:ReginaVickyTabBarController.h 和 ReginaVickyTabBarController.m(继承自UITabBarController)
  • 创建:ReginaVickyNavigationController.h和#ReginaVickyNavigationController.m(继承自UINavigationController)
  • 添加四个子控制器
    • ReginaVickyTabBarController.m文件中
/**
 *  添加子控制器
 */
- (void)setupChildViewControllers
{
    [self setupOneChildViewController:[[XMGNavigationController alloc] initWithRootViewController:[[XMGEssenceViewController alloc] init]] title:@"精华" image:@"tabBar_essence_icon" selectedImage:@"tabBar_essence_click_icon"];
    
    [self setupOneChildViewController:[[XMGNavigationController alloc] initWithRootViewController:[[XMGNewViewController alloc] init]] title:@"新帖" image:@"tabBar_new_icon" selectedImage:@"tabBar_new_click_icon"];
    
    [self setupOneChildViewController:[[XMGNavigationController alloc] initWithRootViewController:[[XMGFollowViewController alloc] init]] title:@"关注" image:@"tabBar_friendTrends_icon" selectedImage:@"tabBar_friendTrends_click_icon"];
    
    [self setupOneChildViewController:[[XMGNavigationController alloc] initWithRootViewController:[[XMGMeViewController alloc] init]] title:@"我" image:@"tabBar_me_icon" selectedImage:@"tabBar_me_click_icon"];
}

/**
 *  初始化一个子控制器
 *
 *  @param vc            子控制器
 *  @param title         标题
 *  @param image         图标
 *  @param selectedImage 选中的图标
 */
- (void)setupOneChildViewController:(UIViewController *)vc title:(NSString *)title image:(NSString *)image selectedImage:(NSString *)selectedImage
{
    vc.tabBarItem.title = title;
    if (image.length) { // 图片名有具体值
        vc.tabBarItem.image = [UIImage imageNamed:image];
        vc.tabBarItem.selectedImage = [UIImage imageNamed:selectedImage];
    }
    [self addChildViewController:vc];
}

4.自定义类ReginaVickyTabBar(继承自UITabBar)

  • 声明中间的按钮
  • 创建ReginaVickyTabBar.h 和 ReginaVickyTabBar.m(继承自UITabBar)

ReginaVickyTabBar.m文件中

/** 中间的发布按钮 */
@property (nonatomic, weak) UIButton *publishButton;
@end

@implementation ReginaVickyTabBar

#pragma mark - 懒加载
/** 发布按钮 */
- (UIButton *)publishButton
{
    if (!_publishButton) {
        UIButton *publishButton = [UIButton buttonWithType:UIButtonTypeCustom];
        [publishButton setImage:[UIImage imageNamed:@"tabBar_publish_icon"] forState:UIControlStateNormal];
        [publishButton setImage:[UIImage imageNamed:@"tabBar_publish_click_icon"] forState:UIControlStateHighlighted];
        [publishButton addTarget:self action:@selector(publishClick) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:publishButton];
        _publishButton = publishButton;
    }
    return _publishButton;
}

#pragma mark - 初始化
- (instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        self.backgroundImage = [UIImage imageNamed:@"tabbar-light"];
    }
    return self;
}

/**
 *  布局子控件
 */
- (void)layoutSubviews
{
    [super layoutSubviews];
    /**** 按钮的尺寸 ****/
    CGFloat buttonW = self.reginavicky_width / 5;
    CGFloat buttonH = self.reginavicky_height;
    CGFloat buttonY = 0;
    // 按钮索引
    int buttonIndex = 0;
    
    for (UIView *subview in self.subviews) {
        // 过滤掉非UITabBarButton
        if (subview.class != NSClassFromString(@"UITabBarButton")) continue;
        
        // 设置frame
        CGFloat buttonX = buttonIndex * buttonW;
        if (buttonIndex >= 2) { // 右边的2个UITabBarButton
            buttonX += buttonW;
        }
        subview.frame = CGRectMake(buttonX, buttonY, buttonW, buttonH);
        
        // 增加索引
        buttonIndex++;
    }
    
    /**** 设置中间的发布按钮的frame ****/
    self.publishButton.reginavicky_width = buttonW;
    self.publishButton.reginavicky_height = buttonH;
    self.publishButton.reginavicky_centerX = self.reginavicky_width * 0.5;
    self.publishButton.reginavicky_centerY = self.reginavicky_height * 0.5;
}
#pragma mark - 监听
- (void)publishClick
{
    ReginaVickyLogFunc
    
}

5. 设置TabBarItem文字的属性和更替TabBar

ReginaVickyTabBarController.m文件中

/**
 *  设置所有UITabBarItem的文字属性
 */
- (void)setupItemTitleTextAttributes
{
    UITabBarItem *item = [UITabBarItem appearance];
    // 普通状态下的文字属性
    NSMutableDictionary *normalAttrs = [NSMutableDictionary dictionary];
    normalAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:14];
    normalAttrs[NSForegroundColorAttributeName] = [UIColor grayColor];
    [item setTitleTextAttributes:normalAttrs forState:UIControlStateNormal];
    // 选中状态下的文字属性
    NSMutableDictionary *selectedAttrs = [NSMutableDictionary dictionary];
    selectedAttrs[NSForegroundColorAttributeName] = [UIColor darkGrayColor];
    [item setTitleTextAttributes:normalAttrs forState:UIControlStateSelected];
}
/**
 *  更换TabBar
 */
- (void)setupTabBar
{
    [self setValue:[[ReginaVickyTabBar alloc] init] forKeyPath:@"tabBar"];
}

自定义中间有凸起按钮的TabBar

目标

Snip20180606_8.png

分析

  • 基于自带tabbar自定义tabbar
  • 主要处理中间凸起的按钮,大小,位置的设定
  • 需要注意的是,不要忘记处理超出部分点击失效的问题

实现

1.建立新的项目,并去掉原有的

  • ViewController.h
  • ViewController.m
  • Main.storyboard
  • LaunchScreen.storyboard
  • 注意:要去掉info里面的main storyboard base name;

2.创建窗口、设置根控制器、显示窗口

AppDelegate.m文件

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    //创建窗口
    self.window = [[UIWindow alloc] init];
    self.window.frame = [UIScreen mainScreen].bounds;
    
    //设置根控制器
    self.window.rootViewController = [[ReginaVickyTabBarController alloc] init];
    
    //显示窗口
    [self.window makeKeyAndVisible];
    
    return YES;
}

3.自定义标签控制器(继承自UITabBarController)和创建导航栏控制器(继承自UINavigationController)

  • 创建:ReginaVickyTabBarController.h 和 ReginaVickyTabBarController.m(继承自UITabBarController)
  • 创建:ReginaVickyNavigationController.h和#ReginaVickyNavigationController.m(继承自UINavigationController)
  • 添加四个子控制器
    • ReginaVickyTabBarController.m文件中
/**
 *  添加子控制器
 */
- (void)setupChildViewControllers
{
    [self setupOneChildViewController:[[ReginaVickyNavigationController alloc] initWithRootViewController:[[ReginaVickyHomeViewController alloc] init]] title:@"首页" image:@"home_normal" selectedImage:@"home_highlight"];
    
    [self setupOneChildViewController:[[ReginaVickyNavigationController alloc] initWithRootViewController:[[ReginaVickyMyCityViewController alloc] init]] title:@"同城" image:@"mycity_normal" selectedImage:@"mycity_highlight"];
    
    
    [self setupOneChildViewController:[[ReginaVickyNavigationController alloc] initWithRootViewController:[[ReginaVickyMessageViewController alloc] init]] title:@"消息" image:@"message_normal" selectedImage:@"message_highlight"];
    
    [self setupOneChildViewController:[[ReginaVickyNavigationController alloc] initWithRootViewController:[[ReginaVickyMineViewController alloc] init]] title:@"我的" image:@"account_normal" selectedImage:@"account_highlight"];
}

/**
 *  初始化一个子控制器
 *
 *  @param vc            子控制器
 *  @param title         标题
 *  @param image         图标
 *  @param selectedImage 选中的图标
 */
- (void)setupOneChildViewController:(UIViewController *)vc title:(NSString *)title image:(NSString *)image selectedImage:(NSString *)selectedImage
{
    vc.tabBarItem.title = title;
    if (image.length) { // 图片名有具体值
        vc.tabBarItem.image = [UIImage imageNamed:image];
        vc.tabBarItem.selectedImage = [[UIImage imageNamed:selectedImage] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
        //这句话的意思是声明这张图片按照原始的样子显示出来,不要自动渲染成其他颜色
        //vc.tabBarItem.selectedImage = [UIImage imageNamed:selectedImage];
    }
    [self addChildViewController:vc];
}

4.自定义类ReginaVickyTabBar(继承自UITabBar)

  • 声明中间的按钮
  • 创建ReginaVickyTabBar.h 和 ReginaVickyTabBar.m(继承自UITabBar)

ReginaVickyTabBar.m文件中

/** 发布按钮 */
- (UIButton *)publishButton
{
    if (!_publishButton) {
        UIButton * publishButton = [UIButton buttonWithType:UIButtonTypeCustom];
        [publishButton setImage:[UIImage imageNamed:@"post_normal"] forState:UIControlStateNormal];
        [publishButton setTitle:@"发布" forState:UIControlStateNormal];
        [publishButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        
        publishButton.titleLabel.font = [UIFont systemFontOfSize:10];
        publishButton.titleEdgeInsets = UIEdgeInsetsMake(85, -60, 0, 0);
        [publishButton setImage:[UIImage imageNamed:@"post_normal"] forState:UIControlStateHighlighted];
        [publishButton addTarget:self action:@selector(publishClick) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:publishButton];
        _publishButton = publishButton;
        
    }
    
    return _publishButton;
}

#pragma mark - 初始化
- (instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        //self.barTintColor =
        //self.backgroundImage = [UIImage imageNamed:@"tabbar-light"];
        //[[UITabBar appearance] setTintColor:[UIColor redColor]];
    }
    return self;
}

/**
 *  布局子控件
 */
- (void)layoutSubviews
{
    [super layoutSubviews];
    /**** 按钮的尺寸 ****/
    CGFloat buttonW = self.reginavicky_width / 5;
    CGFloat buttonH = self.reginavicky_height;
    CGFloat buttonY = 0;
    // 按钮索引
    int buttonIndex = 0;
    
    for (UIView *subview in self.subviews) {
        // 过滤掉非UITabBarButton
        if (subview.class != NSClassFromString(@"UITabBarButton")) continue;
        
        // 设置frame
        CGFloat buttonX = buttonIndex * buttonW;
        if (buttonIndex >= 2) { // 右边的2个UITabBarButton
            buttonX += buttonW;
        }
        subview.frame = CGRectMake(buttonX, buttonY, buttonW, buttonH);
        
        // 增加索引
        buttonIndex++;
    }
    
    /**** 设置中间的发布按钮的frame ****/
    
    UIImage *normalImage = [UIImage imageNamed:@"post_normal"];
    self.publishButton.reginavicky_width = normalImage.size.width ;
    self.publishButton.reginavicky_height = normalImage.size.height ;
    self.publishButton.reginavicky_centerX = self.reginavicky_width * 0.5;
    self.publishButton.reginavicky_centerY = 0;
    
    
}

5. 由于中间按钮凸出去一块,所以需要处理超出区域点击无效的问题

ReginaVickyTabBar.m文件中

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{
    if (self.hidden){
        return [super hitTest:point withEvent:event];
    }else {
        //转换坐标
        CGPoint tempPoint = [self.publishButton convertPoint:point fromView:self];
        //判断点击的点是否在按钮区域内
        if (CGRectContainsPoint(self.publishButton.bounds, tempPoint)){
            //返回按钮
            return _publishButton;
        }else {
            return [super hitTest:point withEvent:event];
        }
    }

6. 设置TabBarItem文字的属性和更替TabBar

ReginaVickyTabBarController.m文件中

/**
 *  设置所有UITabBarItem的文字属性
 */
- (void)setupItemTitleTextAttributes
{
    UITabBarItem *item = [UITabBarItem appearance];
    // 普通状态下的文字属性
    NSMutableDictionary *normalAttrs = [NSMutableDictionary dictionary];
    normalAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:14];
    normalAttrs[NSForegroundColorAttributeName] = [UIColor grayColor];
    [item setTitleTextAttributes:normalAttrs forState:UIControlStateNormal];
    // 选中状态下的文字属性
    NSMutableDictionary *selectedAttrs = [NSMutableDictionary dictionary];
    selectedAttrs[NSForegroundColorAttributeName] = [UIColor darkGrayColor];
    [item setTitleTextAttributes:normalAttrs forState:UIControlStateSelected];
}
/**
 *  更换TabBar
 */
- (void)setupTabBar
{
    [self setValue:[[ReginaVickyTabBar alloc] init] forKeyPath:@"tabBar"];
    
}

完全自定义TabBar

目标

Snip20180609_1.png

分析

  • tabbar的文字和图片是文字在上面,图片在下面,需要自己设定
  • tabbar的透明度设定的是透明,修改tabbar上面的分隔线颜色
  • Navigationbar的透明度设为透明,隐藏下面的分割线

实现

1.建立新的项目,并去掉原有的

  • ViewController.h
  • ViewController.m
  • Main.storyboard
  • LaunchScreen.storyboard
  • 注意:要去掉info里面的main storyboard base name;

2.创建窗口、设置根控制器、显示窗口

AppDelegate.m文件

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    //创建窗口
    self.window = [[UIWindow alloc] init];
    self.window.frame = [UIScreen mainScreen].bounds;
    
    //设置根控制器
    self.window.rootViewController = [[ReginaVickyTabBarController alloc] init];
    
    //显示窗口
    [self.window makeKeyAndVisible];
    
    return YES;
}

3.自定义标签控制器(继承自UITabBarController)和创建导航栏控制器(继承自UINavigationController)

  • 创建:ReginaVickyTabBarController.h 和 ReginaVickyTabBarController.m(继承自UITabBarController)
  • 创建:ReginaVickyNavigationController.h和#ReginaVickyNavigationController.m(继承自UINavigationController)
  • 在初始化子控件时,对item的文字和图片进行位置的设置
[vc.tabBarItem setTitlePositionAdjustment:UIOffsetMake(0,-15)];
vc.tabBarItem.imageInsets = UIEdgeInsetsMake(25, 0, -25, 0);
  • 添加四个子控制器
    • ReginaVickyTabBarController.m文件中
/**
 *  添加子控制器
 */
- (void)setupChildViewControllers
{
    
    [self setupOneChildViewController:[[ReginaVickyNavigationController alloc] initWithRootViewController:[[ReginaVickyHomeViewController alloc] init]] title:@"首页" image:@"tabbartouming" selectedImage:@"tabbarxi"];
    
    [self setupOneChildViewController:[[ReginaVickyFollowViewController alloc] init] title:@"关注" image:@"tabbartouming" selectedImage:@"tabbarxi"];
    
    
    
    [self setupOneChildViewController:[[ReginaVickyNavigationController alloc] initWithRootViewController:[[ReginaVickyMessageViewController alloc] init]] title:@"消息" image:@"tabbartouming" selectedImage:@"tabbarxi"];
    
    [self setupOneChildViewController:[[ReginaVickyMeViewController alloc] init] title:@"我" image:@"tabbartouming" selectedImage:@"tabbarxi"];

}




/**
 *  初始化一个子控制器
 *
 *  @param vc            子控制器
 *  @param title         标题
 *  @param image         图标
 *  @param selectedImage 选中的图标
 */
- (void)setupOneChildViewController:(UIViewController *)vc title:(NSString *)title image:(NSString *)image selectedImage:(NSString *)selectedImage
{
    vc.tabBarItem.title = title;
    [vc.tabBarItem setTitlePositionAdjustment:UIOffsetMake(0,-15)];
    if (image.length) { // 图片名有具体值
        vc.tabBarItem.image = [UIImage imageNamed:image];
        vc.tabBarItem.selectedImage = [[UIImage imageNamed:selectedImage] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
        //这句话的意思是声明这张图片按照原始的样子显示出来,不要自动渲染成其他颜色
        vc.tabBarItem.imageInsets = UIEdgeInsetsMake(25, 0, -25, 0);
        //vc.tabBarItem.selectedImage = [UIImage imageNamed:selectedImage];
    }
    [self addChildViewController:vc];
}

4. 自定义类ReginaVickyTabBar(继承自UITabBar)

  • 声明中间的按钮
  • 创建ReginaVickyTabBar.h 和 ReginaVickyTabBar.m(继承自UITabBar)

ReginaVickyTabBar.m文件中

/** 发布按钮 */
- (UIButton *)publishButton
{
    if (!_publishButton) {
        UIButton * publishButton = [UIButton buttonWithType:UIButtonTypeCustom];
        [publishButton setImage:[UIImage imageNamed:@"tabbarpulishbutton"] forState:UIControlStateNormal];
        [publishButton setImage:[UIImage imageNamed:@"tabbarpulishbutton"] forState:UIControlStateHighlighted];
        [publishButton addTarget:self action:@selector(publishClick) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:publishButton];
        _publishButton = publishButton;
        
    }
    
    return _publishButton;
}

#pragma mark - 初始化
- (instancetype)initWithFrame:(CGRect)frame
{
    
    if (self = [super initWithFrame:frame]) {
        
        
        
    }
    return self;
}

/**
 *  布局子控件
 */
- (void)layoutSubviews
{
    [super layoutSubviews];
    /**** 按钮的尺寸 ****/
    CGFloat buttonW = self.reginavicky_width / 5;
    CGFloat buttonH = self.reginavicky_height;
    CGFloat buttonY = 0;
    // 按钮索引
    int buttonIndex = 0;
    
    for (UIView *subview in self.subviews) {
        // 过滤掉非UITabBarButton
        if (subview.class != NSClassFromString(@"UITabBarButton")) continue;
        
        // 设置frame
        CGFloat buttonX = buttonIndex * buttonW;
        if (buttonIndex >= 2) { // 右边的2个UITabBarButton
            buttonX += buttonW;
        }
        subview.frame = CGRectMake(buttonX, buttonY, buttonW, buttonH);
        
        // 增加索引
        buttonIndex++;
    }
    
    /**** 设置中间的发布按钮的frame ****/
    self.publishButton.reginavicky_width = buttonW * 0.75;
    self.publishButton.reginavicky_height = buttonH * 0.75;
    self.publishButton.reginavicky_centerX = self.reginavicky_width * 0.5;
    self.publishButton.reginavicky_centerY = self.reginavicky_height * 0.5;
    
    
}

#pragma mark - 监听
- (void)publishClick
{
    ReginaVickyLogFunc
    
}

5. 设置TabBarItem文字的属性和更替TabBar

ReginaVickyTabBarController.m文件中

/**
 *  设置所有UITabBarItem的文字属性
 */
- (void)setupItemTitleTextAttributes
{
    UITabBarItem *item = [UITabBarItem appearance];
    // 普通状态下的文字属性
    NSMutableDictionary *normalAttrs = [NSMutableDictionary dictionary];
    normalAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:15];
    normalAttrs[NSForegroundColorAttributeName] = [UIColor grayColor];
    [item setTitleTextAttributes:normalAttrs forState:UIControlStateNormal];
    // 选中状态下的文字属性
    NSMutableDictionary *selectedAttrs = [NSMutableDictionary dictionary];
    selectedAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:17];
    selectedAttrs[NSForegroundColorAttributeName] = [UIColor whiteColor];
    [item setTitleTextAttributes:selectedAttrs forState:UIControlStateSelected];
}
/**
 *  更换TabBar
 */
- (void)setupTabBar
{
    [self setValue:[[ReginaVickyTabBar alloc] init] forKeyPath:@"tabBar"];
    
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容