自己理解MVVM的实现(非正宗)

Model

CHSModel.h
//
//  CHSModel.h
//  CHSAPP
//
//  Created by stone on 2021/8/24.
//  Copyright © 2021 stone. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <Mantle/Mantle.h>

NS_ASSUME_NONNULL_BEGIN

@interface CHSModel:MTLModel <MTLJSONSerializing>

@property (nonatomic,strong) NSString *idMax;

@property (nonatomic,strong) NSString *ctime;

@property (nonatomic,strong) NSString *title;

@property (nonatomic,strong) NSString *descriptionMax;

@property (nonatomic,strong) NSString *source;

@property (nonatomic,strong) NSString *picUrl;

@property (nonatomic,strong) NSString *url;

@end

NS_ASSUME_NONNULL_END
CHSModel.m
//
//  CHSModel.m
//  CHSAPP
//
//  Created by stone on 2021/8/24.
//  Copyright © 2021 stone. All rights reserved.
//

#import "CHSModel.h"

@implementation CHSModel

+ (NSDictionary *)JSONKeyPathsByPropertyKey {
    return @{
        @"idMax": @"id",
        @"descriptionMax": @"description",
        @"ctime": @"ctime",
        @"title": @"title",
        @"source": @"source",
        @"picUrl": @"picUrl",
        @"url": @"url"
    };
}

@end

NS_ASSUME_NONNULL_END

ViewModel

CHSViewModel .h
//
//  CHSViewModel.h
//  CHSAPP
//
//  Created by stone on 2021/8/24.
//  Copyright © 2021 stone. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "CHSModel.h"
#import "MGRefreshHeader.h"
#import "MGRefreshFooter.h"
#import <ReactiveObjC/ReactiveObjC.h>

NS_ASSUME_NONNULL_BEGIN

typedef void(^CHSFetchModelDatasHandle)(NSMutableArray<CHSModel *> *models);

@interface CHSViewModel : NSObject

@property (nonatomic, strong) RACSubject *subject;

- (void)fetchModelDatas:(MGRefreshHeader *)header withFooter:(MGRefreshFooter *)footer withPageSize:(double )pageSize withPageIndex:(double )pageIndex withHandle:(CHSFetchModelDatasHandle )handle withLocalData:(BOOL )localData;

//使用RAC:
- (void)signalModelDatas:(MGRefreshHeader *)header withFooter:(MGRefreshFooter *)footer withPageSize:(double )pageSize withPageIndex:(double )pageIndex withLocalData:(BOOL )localData;

@end

NS_ASSUME_NONNULL_END

ViewModel

CHSViewModel .m
//
//  CHSViewModel.m
//  CHSAPP
//
//  Created by stone on 2021/8/24.
//  Copyright © 2021 stone. All rights reserved.
//

#import "CHSViewModel.h"
#import "MGRequestManager.h"

@interface CHSViewModel()

@property (nonatomic, strong) NSMutableArray<CHSModel *> *dataArrays;

@end

@implementation CHSViewModel

#pragma mark - Public Method
#pragma mark -

- (void)fetchModelDatas:(MGRefreshHeader *)header withFooter:(MGRefreshFooter *)footer withPageSize:(double )pageSize withPageIndex:(double )pageIndex withHandle:(CHSFetchModelDatasHandle )handle withLocalData:(BOOL )localData {
    NSMutableDictionary *paras = [[NSMutableDictionary alloc] init];
    [paras setObject:@"2dc95ae745b0d989a4f6cf8b53dcb930" forKey:@"key"];
    [paras setObject:@(pageSize) forKey:@"num"];
    [paras setObject:@(pageIndex) forKey:@"page"];
    [MGRequestManager requestWithType:MGHttpRequestTypeGet withUrlString:HOMENEWSDATA withParaments:paras withSuccessBlock:^(NSDictionary *feedBacks) {
        if ([[NSString stringWithFormat:@"%@",feedBacks[@"code"]] isEqualToString:@"200"]) {
            if (pageIndex == 1) {
                [self.dataArrays removeAllObjects];
                [header endRefreshing];
            }
            if ([[NSString stringWithFormat:@"%lu",(unsigned long)[feedBacks[@"newslist"] count]] isEqualToString:@"0"]) {
                if (pageIndex != 1) {
                } else {
                    footer.hidden = YES;
                    [footer endRefreshingWithNoMoreData];
                }
            } else {
                footer.hidden = NO;
                if (pageIndex != 1) {
                    [footer endRefreshing];
                }
                for (int i = 0; i<[feedBacks[@"newslist"] count]; i++) {
                    NSError *error = nil;
                    CHSModel *model = [MTLJSONAdapter modelOfClass:CHSModel.class    fromJSONDictionary:feedBacks[@"newslist"][i] error:&error];
                    [self.dataArrays addObject:model];
                }
            }
        }
        !handle ?: handle(self.dataArrays);
    } withFailureBlock:^(NSError *error) {
        !handle ?: handle([@[] mutableCopy]);
    }];
}

//使用RAC:
- (void)signalModelDatas:(MGRefreshHeader *)header withFooter:(MGRefreshFooter *)footer withPageSize:(double )pageSize withPageIndex:(double )pageIndex withLocalData:(BOOL )localData {
    NSMutableDictionary *paras = [[NSMutableDictionary alloc] init];
    [paras setObject:@"2dc95ae745b0d989a4f6cf8b53dcb930" forKey:@"key"];
    [paras setObject:@(pageSize) forKey:@"num"];
    [paras setObject:@(pageIndex) forKey:@"page"];
    [MGRequestManager requestWithType:MGHttpRequestTypeGet withUrlString:HOMENEWSDATA withParaments:paras withSuccessBlock:^(NSDictionary *feedBacks) {
        if ([[NSString stringWithFormat:@"%@",feedBacks[@"code"]] isEqualToString:@"200"]) {
            if (pageIndex == 1) {
                [self.dataArrays removeAllObjects];
                [header endRefreshing];
            }
            if ([[NSString stringWithFormat:@"%lu",(unsigned long)[feedBacks[@"newslist"] count]] isEqualToString:@"0"]) {
                if (pageIndex != 1) {
                } else {
                    footer.hidden = YES;
                    [footer endRefreshingWithNoMoreData];
                }
            } else {
                footer.hidden = NO;
                if (pageIndex != 1) {
                    [footer endRefreshing];
                }
                for (int i = 0; i<[feedBacks[@"newslist"] count]; i++) {
                    NSError *error = nil;
                    CHSModel *model = [MTLJSONAdapter modelOfClass:CHSModel.class    fromJSONDictionary:feedBacks[@"newslist"][i] error:&error];
                    [self.dataArrays addObject:model];
                }
            }
        }
        [self.subject sendNext:self.dataArrays];
    } withFailureBlock:^(NSError *error) {
        [self.subject sendNext:[@[] mutableCopy]];
    }];
    
}

#pragma mark - lazy load
#pragma mark -

- (NSMutableArray *)dataArrays {
    if (_dataArrays == nil) {
        _dataArrays = [[NSMutableArray alloc] init];
    }
    return _dataArrays;
}

//实例化rac:
- (RACSubject *)subject {
    if (_subject == nil) {
        _subject = [RACSubject subject];
    }
    return _subject;
}

@end

View

CHSView.h
//
//  CHSView.h
//  CHSAPP
//
//  Created by stone on 2021/8/24.
//  Copyright © 2021 stone. All rights reserved.
//


#import <UIKit/UIKit.h>
#import "CHSModel.h"
#import "MGRefreshHeader.h"
#import "MGRefreshFooter.h"

NS_ASSUME_NONNULL_BEGIN

@protocol CHSViewDelegate <NSObject>

@optional

- (void)pullFresh;

- (void)loadMore;

- (void)excuteLogic:(CHSModel *)model;

@end

@interface CHSView : UIView {
}

@property (nonatomic, weak)id<CHSViewDelegate> delegate;

@property (nonatomic, strong) UITableView *tableView;

@property (nonatomic, strong) NSMutableArray <CHSModel *> *dataArrays;

@property (nonatomic, strong) MGRefreshHeader *mjRefreshNormalHeader;

@property (nonatomic, strong) MGRefreshFooter *mjRefreshBackNormalFooter;

@end

NS_ASSUME_NONNULL_END

CHSView.m
//
//  CHSView.m
//  CHSAPP
//
//  Created by stone on 2021/8/24.
//  Copyright © 2021 stone. All rights reserved.
//

#import "CHSView.h"
#import "CHSTableViewCell.h"
#import "MGRefreshHeader.h"
#import <Masonry/Masonry.h>

@interface CHSView()<UITableViewDataSource,UITableViewDelegate> {
    
}

@end

@implementation CHSView

#pragma mark - LifeCycle
#pragma mark -

- (id)init {
    self = [super init ];//当前对象self
    if (self !=nil) {
        [self setUI];
    }
    return self;//返回一个已经初始化完毕的对象;
}

#pragma mark - Public Method
#pragma mark -

#pragma mark - Private Method
#pragma mark -

- (void)setUI {
    [self addSubview:self.tableView];
    [self setMas];
}

- (void)setMas {
    [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.equalTo(self);
    }];
}

#pragma mark - IB-Action
#pragma mark -

- (void)pullFresh {
    if (self.delegate && [self.delegate respondsToSelector:@selector(pullFresh)]) {
        [self.delegate pullFresh];
    }
}

- (void)loadMore {
    if (self.delegate && [self.delegate respondsToSelector:@selector(loadMore)]) {
        [self.delegate loadMore];
    }
}

#pragma mark - Notice
#pragma mark -

#pragma mark - UITableViewDelegate && UITableViewDataSource
#pragma mark -

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [self.dataArrays count];
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 100;
}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    return [[UIView alloc] init];
}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
    return 0.01;
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    return [[UIView alloc] init];
}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
    return 0.01;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    CHSTableViewCell *viewCell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([CHSTableViewCell class])];
    if (!viewCell) {
        viewCell = [[CHSTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:NSStringFromClass([CHSTableViewCell class])];
        viewCell.selectionStyle = UITableViewCellSelectionStyleNone;
    }
    CHSModel *model = self.dataArrays[indexPath.row];
    viewCell.model = model;
    __weak typeof(self)weakSelf = self;
    viewCell.handle = ^{
    };
    return viewCell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    CHSModel *model = [self.dataArrays objectAtIndex:indexPath.row];
    if (self.delegate && [self.delegate respondsToSelector:@selector(excuteLogic:)]) {
        [self.delegate excuteLogic:model];
    }
}

#pragma mark - lazy load
#pragma mark -

- (UITableView *)tableView {
    if (!_tableView) {
        _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];
        _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
        _tableView.dataSource = self;
        _tableView.delegate = self;
        _tableView.backgroundColor = [UIColor whiteColor];
        [_tableView registerClass:CHSTableViewCell.self forCellReuseIdentifier:NSStringFromClass([CHSTableViewCell class])];
        _tableView.mj_header = self.mjRefreshNormalHeader;
        _tableView.mj_footer = self.mjRefreshBackNormalFooter;
        if (@available(iOS 11.0, *)) {
            _tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
        }
    }
    return _tableView;
}

- (MGRefreshHeader *)mjRefreshNormalHeader {
    if (!_mjRefreshNormalHeader) {
        _mjRefreshNormalHeader = [MGRefreshHeader headerWithRefreshingTarget:self refreshingAction:@selector(pullFresh)];
    }
    return _mjRefreshNormalHeader;
}

- (MGRefreshFooter *)mjRefreshBackNormalFooter {
    if (!_mjRefreshBackNormalFooter) {
        _mjRefreshBackNormalFooter = [MGRefreshFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMore)];
    }
    return _mjRefreshBackNormalFooter;
}

- (NSMutableArray *)dataArrays {
    if (_dataArrays == nil) {
        _dataArrays = [[NSMutableArray alloc] init];
    }
    return _dataArrays;
}

@end

CHSTableViewCell.h
//
//  CHSTableViewCell.h
//  CHSAPP

//  Created by stone on 2021/8/24.
//  Copyright © 2021 stone. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "CHSModel.h"

typedef void (^CHSAPPRemoveHanlde)(void);

NS_ASSUME_NONNULL_BEGIN

@interface  CHSTableViewCell : UITableViewCell

@property (nonatomic, copy) CHSAPPRemoveHanlde handle;

@property (nonatomic, strong) CHSModel *model;

@end

NS_ASSUME_NONNULL_END

CHSTableViewCell.m
//
//  CHSTableViewCell.m
//  CHSAPP
//
//  Created by stone on 2021/8/24.
//  Copyright © 2021 stone. All rights reserved.
//

#import "CHSTableViewCell.h"
#import "CHSEnlargeButton.h"

#import <Masonry/Masonry.h>
#import <SDWebImage/SDWebImage.h>
#import <ReactiveObjC/ReactiveObjC.h>

@interface CHSTableViewCell()

@property (nonatomic, strong) UILabel *titleLabel;

@property (nonatomic, strong) UILabel *bottomLabel;

@property (nonatomic, strong) UIImageView *picImageView;

@property (nonatomic, strong) CHSEnlargeButton *removeButton;

@end

@implementation CHSTableViewCell

#pragma mark - LifeCycle
#pragma mark -

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        self.selectionStyle =  UITableViewCellSelectionStyleNone;
        [self setUI];
    }
    return self;
}

#pragma mark - Public Method
#pragma mark -

- (void)setModel:(CHSModel *)model {
    [RACObserve(model,title) subscribeNext:^(NSString *x) {
            self.titleLabel.text = x;
    }];
    [RACObserve(model,picUrl) subscribeNext:^(NSString *x) {
        [self.picImageView sd_setImageWithURL:[NSURL URLWithString:x] placeholderImage:nil];
    }];
    self.bottomLabel.text = [NSString stringWithFormat:@"%@   头条 %@",model.source,model.ctime];
}

#pragma mark - Private Method
#pragma mark -

- (void)setUI {
    [self.contentView addSubview:self.titleLabel];
    [self.contentView addSubview:self.bottomLabel];
    [self.contentView addSubview:self.picImageView];
    [self.contentView addSubview:self.removeButton];
    [self setMas];
}

- (void)setMas {
    [self.picImageView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.centerY.equalTo(self.contentView);
        make.right.equalTo(self.contentView.mas_right).offset(-16);
        make.size.equalTo(@(CGSizeMake(120, 80)));
    }];
    
    [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(self.picImageView.mas_top);
        make.left.equalTo(self.contentView.mas_left).offset(16);
        make.right.equalTo(self.picImageView.mas_left).offset(-16);
    }];
    
    [self.removeButton mas_makeConstraints:^(MASConstraintMaker *make) {
        make.bottom.equalTo(self.picImageView.mas_bottom);
        make.right.equalTo(self.picImageView.mas_left).offset(-16);
    }];
    
    [self.bottomLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.centerY.equalTo(self.removeButton);
        make.left.equalTo(self.contentView.mas_left).offset(16);
        make.right.equalTo(self.picImageView.mas_right).offset(-72);
    }];
}

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];
}

#pragma mark - IB-Action
#pragma mark -

- (void)toRemove:(UIButton *)sender {
    !self.handle ?: self.handle();
}

#pragma mark - lazy load
#pragma mark -

- (UILabel *)titleLabel {
    if(_titleLabel == nil) {
        _titleLabel = [[UILabel alloc] init];
        _titleLabel.numberOfLines = 2;
        _titleLabel.textColor = [UIColor blackColor];
        _titleLabel.font = [UIFont systemFontOfSize:14];
    }
    return _titleLabel;
}

- (UILabel *)bottomLabel {
    if(_bottomLabel == nil) {
        _bottomLabel = [[UILabel alloc] init];
        _bottomLabel.numberOfLines = 1;
        _bottomLabel.textColor = [UIColor grayColor];
        _bottomLabel.font = [UIFont systemFontOfSize:10];
    }
    return _bottomLabel;
}

- (UIImageView *)picImageView {
    if(_picImageView == nil) {
        _picImageView = [[UIImageView alloc] init];
        _picImageView.layer.cornerRadius = 6.0;
        _picImageView.layer.masksToBounds = YES;
    }
    return _picImageView;
}

- (CHSEnlargeButton *)removeButton {
    if (!_removeButton) {
        _removeButton = [[CHSEnlargeButton alloc] init];
        _removeButton.enlargeEdge_hsa = UIEdgeInsetsMake(5, 5, 5, 5);
        [_removeButton setImage:[UIImage imageNamed:@"hsa_app_share_close"] forState:UIControlStateNormal];
        [_removeButton addTarget:self action:@selector(toRemove:) forControlEvents:UIControlEventTouchUpInside];
    }
    return _removeButton;
}

@end

Controller

CHSViewController.h
//
//  CHSViewController.h
//  CHSAPP
//
//  Created by stone on 2021/8/24.
//  Copyright © 2021 stone. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "CHSView.h"

@interface CHSViewController : UIViewController

@property (nonatomic, strong) CHSView *chsView;

@end
CHSViewController.m
//
//  CHSViewController.m
//  CHSAPP
//
//  Created by stone on 2021/8/24.
//  Copyright © 2021 stone. All rights reserved.
//

#import "CHSViewController.h"

#import <Masonry/Masonry.h>
#import "CHSModel.h"
#import "CHSViewModel.h"

@interface CHSViewController ()<CHSViewDelegate>

@property (nonatomic, strong) CHSViewModel *viewModel;

@property (nonatomic, assign) double pageIndex;
@property (nonatomic, assign) double pageSize;

@end

@implementation CHSViewController

#pragma mark - LifeCycle
#pragma mark -

- (instancetype)init {
    self = [super init];
    if (self) {
        self.pageIndex = 1;
        self.pageSize = 10;
    }
    return self;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor whiteColor];
    //订阅信号:
    [self subscribeSignal];
    [self setUI];
    [self fireRequest];
}

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
}

#pragma mark - Public Method
#pragma mark -

#pragma mark - Private Method
#pragma mark -

- (void)setUI {
    [self.view addSubview:self.chsView];
    [self setMas];
}

- (void)setMas {
    [self.chsView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(self.view.mas_top).offset(StatusBarH+NaviBarH);
        make.bottom.equalTo(self.view.mas_bottom).offset(-TabBarH);
        make.left.equalTo(self.view.mas_left);
        make.right.equalTo(self.view.mas_right);
    }];
}

- (void)subscribeSignal {
    __weak typeof(self)weakSelf = self;
    [self.viewModel.subject subscribeNext:^(id  _Nullable x) {
        NSMutableArray<CHSModel *> *models = (NSMutableArray<CHSModel *> *)x;
        __strong typeof(weakSelf) strongSelf = weakSelf;
        strongSelf.chsView.dataArrays = models;
        [strongSelf.chsView.tableView reloadData];
    }];
}

- (void)fireRequest {
//    __weak typeof(self)weakSelf = self;
//    [self.viewModel fetchModelDatas:self.chsView.mjRefreshNormalHeader withFooter:self.chsView.mjRefreshBackNormalFooter withPageSize:self.pageSize withPageIndex:self.pageIndex withHandle:^(NSMutableArray<CHSModel *> * _Nonnull models) {
//        __strong typeof(weakSelf) strongSelf = weakSelf;
//        strongSelf.chsView.dataArrays = models;
//        [strongSelf.chsView.tableView reloadData];
//    }];
    [self.viewModel signalModelDatas:self.chsView.mjRefreshNormalHeader withFooter:self.chsView.mjRefreshBackNormalFooter withPageSize:self.pageSize withPageIndex:self.pageIndex];
}

#pragma mark - IB-Action
#pragma mark -


#pragma mark - CHSViewDelegate
#pragma mark -


#pragma mark - Delegate
#pragma mark -

- (void)pullFresh {
    self.pageIndex = 1;
    [self fireRequest];
}

- (void)loadMore {
    self.pageIndex  = self.pageIndex + 1;
    [self fireRequest];
}

- (void)excuteLogic:(CHSModel *)model {
    
}

#pragma mark - Lazy load

- (CHSView *)chsView
{
    if (!_chsView) {
        _chsView = [[CHSView alloc] init];
        _chsView.delegate = self; //将CHSViewController自己的实例作为委托对象
    }
    return _chsView;
}

- (CHSViewModel *)viewModel {
    if (_viewModel == nil) {
        _viewModel = [[CHSViewModel alloc] init];
    }
    return _viewModel;
}

@end

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

推荐阅读更多精彩内容