ios 仿相冊(cè)-UICollectionVIew滑動(dòng)多選實(shí)現(xiàn)

文件目錄


截屏2023-05-11 15.44.00.png

效果圖尚氛,綠色有序號(hào)的為選中的item


截屏2023-05-11 15.45.39.png

每個(gè)文件內(nèi)容
viewController.m

#import "ViewController.h"
#import "MYCollectionViewCell.h"
#import "QYManager.h"
#import "MYModel.h"
#import "UIView+QYExtension.h"

static NSString *cellID = @"MYCollectionViewCell";
#define SCREEN_WIDTH  [UIScreen mainScreen].bounds.size.width

@interface ViewController ()<UICollectionViewDelegate, UICollectionViewDataSource>

@property(nonatomic, strong) NSMutableArray *dataSource;
@property(nonatomic, strong) UICollectionView *myCollection;
@property (nonatomic, strong)UICollectionViewFlowLayout *layout;

// 手勢(shì)
@property (assign, nonatomic) CGPoint panSelectStartPoint;
@property (assign, nonatomic) NSInteger currentPanSelectType;
@property (nonatomic, strong) QYManager *manager;
@property (strong, nonatomic) NSMutableArray *panSelectIndexPaths;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [self.view addSubview:self.myCollection];
    
    [self createDataSource];
    // 添加滑動(dòng)手勢(shì)
    UIPanGestureRecognizer *selectPanGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(selectPanGestureRecognizerClick:)];
    [self.view addGestureRecognizer:selectPanGesture];
}

- (void)createDataSource{
    NSMutableArray *muArray = [NSMutableArray array];
    NSArray *array = @[@"a", @"b", @"c", @"d", @"e", @"f", @"g", @"h", @"i", @"j", @"k", @"l", @"m", @"n", @"o", @"p", @"q", @"r", @"s", @"t", @"u", @"v", @"w", @"x", @"y", @"z"];
    for (int i = 0; i < array.count; i++) {
        MYModel *model = [[MYModel alloc] init];
        model.name = array[i];
        [muArray addObject:model];
    }
    self.dataSource = muArray;
    [self.myCollection reloadData];
}

- (NSMutableArray *)dataSource
{
    if(!_dataSource){
        _dataSource = [NSMutableArray array];
    }
    return _dataSource;
}

// 手勢(shì)操作
- (void)selectPanGestureRecognizerClick:(UIPanGestureRecognizer *)panGesture {
        
    if (panGesture.state == UIGestureRecognizerStateBegan) {
        // 獲取起始點(diǎn)
        self.panSelectStartPoint = [panGesture locationInView:self.myCollection];
        NSIndexPath *indexPath = [self.myCollection indexPathForItemAtPoint:self.panSelectStartPoint];
        if (indexPath) {
            // 起始點(diǎn)在cell上
            MYModel *firstModel = self.dataSource[indexPath.item];
            self.currentPanSelectType = !firstModel.selected;

        }else {
            // 起始點(diǎn)不在cell上
            self.currentPanSelectType = -1;
        }
    }else if (panGesture.state == UIGestureRecognizerStateChanged) {
        
        CGPoint currentPoint = [panGesture locationInView:self.myCollection];
        NSInteger firstLine = 0;
        NSInteger lastLine = 0;
        NSIndexPath *firstIndexPath = [self.myCollection indexPathForItemAtPoint:self.panSelectStartPoint];
        if (!firstIndexPath) {
            // 起始點(diǎn)不在cell上直接不可滑動(dòng)選擇
            return;
        }
        NSIndexPath *lastIndexPath = [self.myCollection indexPathForItemAtPoint:currentPoint];
        if (!lastIndexPath) {
            return;
        }
        NSInteger rowCount = 3;
        if ((firstIndexPath.item + 1) % rowCount == 0) {
            firstLine = (firstIndexPath.item + 1) / rowCount;
        }else {
            firstLine = (firstIndexPath.item + 1) / rowCount + 1;
        }
        if ((lastIndexPath.item + 1) % rowCount == 0) {
            lastLine = (lastIndexPath.item + 1) / rowCount;
        }else {
            lastLine = (lastIndexPath.item + 1) / rowCount + 1;
        }
        NSMutableArray *indexPaths = [NSMutableArray array];
        CGFloat startX;
        CGFloat maxX;
        BOOL xReverse = NO;
        if (currentPoint.x > self.panSelectStartPoint.x) {
            // 向右
            maxX = [self panSelectGetMaxXWithPoint:currentPoint];
            startX = [self panSelectGetMinXWithPoint:self.panSelectStartPoint];
        }else {
            // 向左
            xReverse = YES;
            maxX = [self panSelectGetMaxXWithPoint:self.panSelectStartPoint];
            startX = [self panSelectGetMinXWithPoint:currentPoint];
        }
        CGFloat maxY;
        CGFloat startY;
        BOOL yReverse = NO;
        if (currentPoint.y > self.panSelectStartPoint.y) {
            // 向下
            maxY = [self panSelectGetMaxYWithPoint:currentPoint];
            startY = [self panSelectGetMinYWithPoint:self.panSelectStartPoint];
        }else {
            // 向上
            yReverse = YES;
            maxY = [self panSelectGetMaxYWithPoint:self.panSelectStartPoint];
            startY = [self panSelectGetMinYWithPoint:currentPoint];
        }
        NSInteger distanceW = self.layout.minimumInteritemSpacing + self.layout.itemSize.width;
        NSInteger distanceH = self.layout.minimumInteritemSpacing + self.layout.itemSize.height;
        BOOL canSelectVideo = YES;
        NSIndexPath *sIndexPath = [self.myCollection indexPathForItemAtPoint:self.panSelectStartPoint];
        if (sIndexPath && ![indexPaths containsObject:sIndexPath]) {
            [indexPaths addObject:sIndexPath];
        }
        
        while (yReverse ? maxY > startY : startY < maxY) {
            
            CGFloat tempStartX = startX;
            CGFloat tempMaxX = maxX;
            NSInteger currentLine = 0;
            NSIndexPath *currentIndexPath;
            if (yReverse) {
                currentIndexPath = [self.myCollection indexPathForItemAtPoint:CGPointMake(tempMaxX - 1, maxY - 1)];
            }else {
                currentIndexPath = [self.myCollection indexPathForItemAtPoint:CGPointMake(tempStartX + 1, startY + 1)];
            }
            if ((currentIndexPath.item + 1) % rowCount == 0) {
                currentLine = (currentIndexPath.item + 1) / rowCount;
            }else {
                currentLine = (currentIndexPath.item + 1) / rowCount + 1;
            }
            if (currentLine == firstLine) {
                if (lastLine != firstLine) {
                    if (yReverse) {
                        tempMaxX = [self panSelectGetMaxXWithPoint:self.panSelectStartPoint];
                        tempStartX = 2;
                    }else {
                        if (xReverse) {
                            tempStartX = [self panSelectGetMinXWithPoint:self.panSelectStartPoint];
                        }
                        tempMaxX = SCREEN_WIDTH - 2;
                    }
                }
            }else if (currentLine == lastLine) {
                if (yReverse) {
                    tempStartX = [self panSelectGetMinXWithPoint:currentPoint];
                    tempMaxX = SCREEN_WIDTH - 2;
                }else {
                    tempStartX = 2;
                    if (xReverse) {
                        tempMaxX = [self panSelectGetMaxXWithPoint:currentPoint];
                    }
                }
            }else if (currentLine != firstLine && currentLine != lastLine) {
                tempStartX = 2;
                tempMaxX = SCREEN_WIDTH - 2;
            }
            
            while (yReverse ? tempMaxX > tempStartX : tempStartX < tempMaxX) {
                NSIndexPath *indexPath;
                if (yReverse) {
                    indexPath = [self panSelectCurrentIndexPathWithPoint:CGPointMake(tempMaxX, maxY) indexPaths:indexPaths canSelectVideo:canSelectVideo];
                }else {
                    indexPath = [self panSelectCurrentIndexPathWithPoint:CGPointMake(tempStartX, startY) indexPaths:indexPaths canSelectVideo:canSelectVideo];
                }
                if (indexPath) {
                    [indexPaths addObject:indexPath];
                }
                if (yReverse) {
                    tempMaxX -= distanceW / 2;
                }else {
                    tempStartX += distanceW / 2;
                }
            }
            if (yReverse) {
                maxY -= distanceH / 2;
            }else {
                startY += distanceH / 2;
            }
        }
        
        NSIndexPath *eIndexPath = [self.myCollection indexPathForItemAtPoint:currentPoint];
        
        if (eIndexPath && ![indexPaths containsObject:eIndexPath]) {
           
            MYModel *model = self.dataSource[eIndexPath.item];
            
            if (self.currentPanSelectType == 0) {
                if (model.selected) {
                    [indexPaths addObject:eIndexPath];
                }
            }
            
            else if (self.currentPanSelectType == 1) {
                if (!model.selected) {
                    [indexPaths addObject:eIndexPath];

                }
            }
        }

        if (self.currentPanSelectType == -1) {
            NSIndexPath *firstIndexPath = indexPaths.firstObject;
        
            MYModel *firstModel = [[MYModel alloc] init];
            
            if (firstIndexPath) {
                
                firstModel = self.dataSource[firstIndexPath.item];
                self.currentPanSelectType = !firstModel.selected;
                
            }

        }
                
        for (NSIndexPath *indexPath in indexPaths) {
            
            MYModel *model = self.dataSource[indexPath.item];
            
            if (self.currentPanSelectType == 0) {
                // 取消選擇
                if (model.selected) {
                    [self.manager beforeSelectedListdeletePhotoModel:model];
                }
            }
            
            else if (self.currentPanSelectType == 1) {
                // 選擇
                if (!model.selected) {
                        [self.manager beforeSelectedListAddPhotoModel:model];

                }
            }
        }
         
        [self.myCollection reloadData];
        
    }else if (panGesture.state == UIGestureRecognizerStateEnded ||
              panGesture.state == UIGestureRecognizerStateCancelled) {
        self.panSelectIndexPaths = nil;
        self.currentPanSelectType = -1;
    }
    
}

- (CGFloat)panSelectGetMaxXWithPoint:(CGPoint)point {
    
    NSIndexPath *indexPath = [self.myCollection indexPathForItemAtPoint:point];
    UICollectionViewCell *cell = [self.myCollection cellForItemAtIndexPath:indexPath];
    return CGRectGetMaxX(cell.frame) - 2;
}

- (CGFloat)panSelectGetMinXWithPoint:(CGPoint)point {
    
    NSIndexPath *indexPath = [self.myCollection indexPathForItemAtPoint:point];
    UICollectionViewCell *cell = [self.myCollection cellForItemAtIndexPath:indexPath];
    return cell.qy_x + 2;
}

- (CGFloat)panSelectGetMaxYWithPoint:(CGPoint)point {
    
    NSIndexPath *indexPath = [self.myCollection indexPathForItemAtPoint:point];
    UICollectionViewCell *cell = [self.myCollection cellForItemAtIndexPath:indexPath];
    return CGRectGetMaxY(cell.frame) - 2;
}

- (CGFloat)panSelectGetMinYWithPoint:(CGPoint)point {
    
    NSIndexPath *indexPath = [self.myCollection indexPathForItemAtPoint:point];
    UICollectionViewCell *cell = [self.myCollection cellForItemAtIndexPath:indexPath];
    return cell.qy_y + 2;
}

- (NSIndexPath *)panSelectCurrentIndexPathWithPoint:(CGPoint)point indexPaths:(NSMutableArray *)indexPaths canSelectVideo:(BOOL)canSelectVideo {
    NSIndexPath *indexPath = [self.myCollection indexPathForItemAtPoint:point];
    if (indexPath && ![indexPaths containsObject:indexPath]) {
        
        return indexPath;
    }
    return nil;
}
- (QYManager *)manager {
    if (!_manager) {
        _manager = [[QYManager alloc] init];
    }
    return _manager;
}

- (NSMutableArray *)panSelectIndexPaths {
    if (!_panSelectIndexPaths) {
        _panSelectIndexPaths = [NSMutableArray array];
    }
    return _panSelectIndexPaths;
}

#pragma mark- Delegate
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return self.dataSource.count;
}

- (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    MYCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellID forIndexPath:indexPath];
    cell.model = self.dataSource[indexPath.row];
    return cell;
}

-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
    return CGSizeMake(([UIScreen mainScreen].bounds.size.width-40)/3.0, 80);
}


- (UICollectionView *)myCollection
{
    if(!_myCollection){
        _layout = [[UICollectionViewFlowLayout alloc]init];
        _layout.minimumLineSpacing = 10;
        _layout.minimumInteritemSpacing = 5;
        _layout.sectionInset = UIEdgeInsetsMake(10, 10, 10, 10);
        _layout.sectionHeadersPinToVisibleBounds = YES;
        
        _myCollection = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, [UIScreen mainScreen].bounds.size.height) collectionViewLayout:_layout];
        _myCollection.backgroundColor = [UIColor whiteColor];
        
        [_myCollection registerClass:[MYCollectionViewCell class] forCellWithReuseIdentifier:cellID];

        _myCollection.delegate = self;
        _myCollection.dataSource = self;
        _myCollection.showsVerticalScrollIndicator = NO;
    }
    return _myCollection;
}

@end

MYCollectionViewCell.h

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

NS_ASSUME_NONNULL_BEGIN

@interface MYCollectionViewCell : UICollectionViewCell

@property(nonatomic, strong) MYModel *model;

@property (strong, nonatomic) UIButton *selectBtn;


@end

NS_ASSUME_NONNULL_END

MYCollectionViewCell.m

#import "MYCollectionViewCell.h"

@interface MYCollectionViewCell()
@property(nonatomic, strong)UILabel *label;

@end

@implementation MYCollectionViewCell

- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        [self createCellUI];
    }
    return self;
}
-(void)createCellUI {
    
    self.contentView.backgroundColor = [UIColor grayColor];
    self.contentView.layer.cornerRadius = 10.0;
    self.contentView.layer.masksToBounds = YES;
    [self.contentView addSubview:self.label];
    [self.contentView addSubview:self.selectBtn];
}
- (void)setModel:(MYModel *)model
{
    self.label.text = model.name;
    [self.selectBtn setTitle:model.selectIndexStr forState:UIControlStateNormal];
}
- (UILabel *)label
{
    if(!_label){
        _label = [[UILabel alloc] initWithFrame:CGRectMake(10, 20, 50, 22)];
        _label.textColor = [UIColor blueColor];
        _label.font = [UIFont systemFontOfSize:14];
    }
    return _label;
}
- (UIButton *)selectBtn {
    
    if (!_selectBtn) {
        _selectBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        _selectBtn.backgroundColor = [UIColor greenColor];
        _selectBtn.frame = CGRectMake(50, 20, 30, 30);
        [_selectBtn setTitleColor:UIColor.blueColor forState:UIControlStateNormal];
        _selectBtn.titleLabel.font = [UIFont systemFontOfSize:18];
        _selectBtn.layer.cornerRadius = 15;
        _selectBtn.layer.masksToBounds = YES;
    }
    return _selectBtn;
}
@end

QYManager

#import <Foundation/Foundation.h>
#import "MYModel.h"

NS_ASSUME_NONNULL_BEGIN

@interface QYManager : NSObject

@property (strong, nonatomic) NSMutableArray *selectedList;
//完成之前從已選數(shù)組中刪除某個(gè)模型
- (void)beforeSelectedListdeletePhotoModel:(MYModel *)model;

//完成之前添加某個(gè)模型到已選數(shù)組中
- (void)beforeSelectedListAddPhotoModel:(MYModel *)model;

//完成之前選擇的所有數(shù)組
- (NSArray *)selectedArray;

@end

NS_ASSUME_NONNULL_END

QYManager.m

#import "QYManager.h"

@implementation QYManager

- (void)beforeSelectedListdeletePhotoModel:(MYModel *)model {
    model.selected = NO;
    model.selectIndexStr = @"";
    model.selectedIndex = 0;
    [self.selectedList removeObject:model];
    
    int i = 0;
    for (MYModel *model in self.selectedList) {
        model.selectIndexStr = [NSString stringWithFormat:@"%d",i + 1];
        i++;
    }
}

- (void)beforeSelectedListAddPhotoModel:(MYModel *)model {

    [self.selectedList addObject:model];
    model.selected = YES;
    model.selectedIndex = [self.selectedList indexOfObject:model];
    model.selectIndexStr = [NSString stringWithFormat:@"%ld",model.selectedIndex  + 1];
}
- (NSArray *)selectedArray {
    return self.selectedList;
}
- (NSMutableArray *)selectedList {
    if (!_selectedList) {
        _selectedList = [NSMutableArray array];
    }
    return _selectedList;
}
@end

UIView+QYExtension.h

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface UIView (QYExtension)

@property (assign,  nonatomic) CGFloat qy_x;
@property (assign,  nonatomic) CGFloat qy_y;
@property (assign,  nonatomic) CGFloat qy_w;
@property (assign,  nonatomic) CGFloat qy_h;
@property (assign,  nonatomic) CGFloat qy_centerX;
@property (assign,  nonatomic) CGFloat qy_centerY;
@property (assign,  nonatomic) CGSize qy_size;
@property (assign,  nonatomic) CGPoint qy_origin;

@end

NS_ASSUME_NONNULL_END

UIView+QYExtension.m

#import "UIView+QYExtension.h"

@implementation UIView (QYExtension)

- (void)setQy_x:(CGFloat)qy_x
{
    CGRect frame = self.frame;
    frame.origin.x = qy_x;
    self.frame = frame;
}

- (CGFloat)qy_x
{
    return self.frame.origin.x;
}

- (void)setQy_y:(CGFloat)qy_y
{
    CGRect frame = self.frame;
    frame.origin.y = qy_y;
    self.frame = frame;
}

- (CGFloat)qy_y
{
    return self.frame.origin.y;
}

- (void)setQy_w:(CGFloat)qy_w
{
    CGRect frame = self.frame;
    frame.size.width = qy_w;
    self.frame = frame;
}

- (CGFloat)qy_w
{
    return self.frame.size.width;
}

- (void)setQy_h:(CGFloat)qy_h
{
    CGRect frame = self.frame;
    frame.size.height = qy_h;
    self.frame = frame;
}

- (CGFloat)qy_h
{
    return self.frame.size.height;
}

- (CGFloat)qy_centerX
{
    return self.center.x;
}

- (void)setQy_centerX:(CGFloat)qy_centerX {
    CGPoint center = self.center;
    center.x = qy_centerX;
    self.center = center;
}

- (CGFloat)qy_centerY
{
    return self.center.y;
}

- (void)setQy_centerY:(CGFloat)qy_centerY {
    CGPoint center = self.center;
    center.y = qy_centerY;
    self.center = center;
}

- (void)setQy_size:(CGSize)qy_size
{
    CGRect frame = self.frame;
    frame.size = qy_size;
    self.frame = frame;
}

- (CGSize)qy_size
{
    return self.frame.size;
}

- (void)setQy_origin:(CGPoint)qy_origin
{
    CGRect frame = self.frame;
    frame.origin = qy_origin;
    self.frame = frame;
}

- (CGPoint)qy_origin
{
    return self.frame.origin;
}
@end

MYModel.h

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface MYModel : NSObject

/// 是否選中
@property (assign, nonatomic) BOOL selected;

/// 選擇的下標(biāo)
@property (assign, nonatomic) NSInteger selectedIndex;

/// 模型所對(duì)應(yīng)的選中下標(biāo)
@property (copy, nonatomic) NSString * _Nullable selectIndexStr;

/// cell是否顯示過(guò)
@property (assign, nonatomic) BOOL dateCellIsVisible;

// 測(cè)試用
@property (nonatomic, copy) NSString *name;


@end

NS_ASSUME_NONNULL_END

MYModel.m

#import "MYModel.h"

@implementation MYModel

- (void)setSelectIndexStr:(NSString *)selectIndexStr {
    _selectIndexStr = selectIndexStr;
    self.selectedIndex = selectIndexStr.integerValue - 1;
}

@end

復(fù)制上面所有的文件即可實(shí)現(xiàn)多選功能

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市竟秫,隨后出現(xiàn)的幾起案子勺鸦,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 217,277評(píng)論 6 503
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件休偶,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡辜羊,警方通過(guò)查閱死者的電腦和手機(jī)踏兜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,689評(píng)論 3 393
  • 文/潘曉璐 我一進(jìn)店門词顾,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人碱妆,你說(shuō)我怎么就攤上這事肉盹。” “怎么了疹尾?”我有些...
    開(kāi)封第一講書人閱讀 163,624評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵上忍,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我纳本,道長(zhǎng)窍蓝,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書人閱讀 58,356評(píng)論 1 293
  • 正文 為了忘掉前任繁成,我火速辦了婚禮吓笙,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘巾腕。我一直安慰自己面睛,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,402評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布尊搬。 她就那樣靜靜地躺著叁鉴,像睡著了一般。 火紅的嫁衣襯著肌膚如雪毁嗦。 梳的紋絲不亂的頭發(fā)上亲茅,一...
    開(kāi)封第一講書人閱讀 51,292評(píng)論 1 301
  • 那天,我揣著相機(jī)與錄音狗准,去河邊找鬼克锣。 笑死,一個(gè)胖子當(dāng)著我的面吹牛腔长,可吹牛的內(nèi)容都是我干的袭祟。 我是一名探鬼主播,決...
    沈念sama閱讀 40,135評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼捞附,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼巾乳!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起鸟召,我...
    開(kāi)封第一講書人閱讀 38,992評(píng)論 0 275
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤胆绊,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后欧募,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體压状,經(jīng)...
    沈念sama閱讀 45,429評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,636評(píng)論 3 334
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了种冬。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片镣丑。...
    茶點(diǎn)故事閱讀 39,785評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖娱两,靈堂內(nèi)的尸體忽然破棺而出莺匠,到底是詐尸還是另有隱情,我是刑警寧澤十兢,帶...
    沈念sama閱讀 35,492評(píng)論 5 345
  • 正文 年R本政府宣布趣竣,位于F島的核電站,受9級(jí)特大地震影響纪挎,放射性物質(zhì)發(fā)生泄漏期贫。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,092評(píng)論 3 328
  • 文/蒙蒙 一异袄、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧玛臂,春花似錦烤蜕、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 31,723評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至泡徙,卻和暖如春橱鹏,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背堪藐。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 32,858評(píng)論 1 269
  • 我被黑心中介騙來(lái)泰國(guó)打工莉兰, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人礁竞。 一個(gè)月前我還...
    沈念sama閱讀 47,891評(píng)論 2 370
  • 正文 我出身青樓糖荒,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親模捂。 傳聞我的和親對(duì)象是個(gè)殘疾皇子捶朵,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,713評(píng)論 2 354

推薦閱讀更多精彩內(nèi)容