FanListView 列表滾動(dòng)縮放

FanListView - github地址

實(shí)現(xiàn)列表的滾動(dòng)縮放揉稚,本文介紹兩種方式布局秒啦,一個(gè)UIScrollView,一個(gè)UICollectionView.(如圖GIF)

listDemo.gif

效果圖片(PNG)

p1

p2.png

功能介紹

1.UIScrollView實(shí)現(xiàn)滾動(dòng)縮放
#import "FanScrollView.h"

@implementation FanScrollView
{
    CGFloat listWidth,listHeight,cellWidth;
    CGFloat allScal,scalWidth;
    NSInteger scalCount;//中間點(diǎn)的左右可見個(gè)數(shù)余境,比如一個(gè)顯示5個(gè),可見個(gè)數(shù)是3芳来,越大越好,不能太大
}
-(instancetype)initWithFrame:(CGRect)frame imageArray:(NSArray *)imageArray{
    self=[super initWithFrame:frame];
    if (self) {
        self.imageArray=[imageArray mutableCopy];
        listWidth=frame.size.width;
        listHeight=frame.size.height;
        cellWidth=(listHeight*165.0f)/220.0f;
        allScal=0.8f;
        scalWidth=cellWidth*1.0f;
        scalCount=3;
        [self configUI];
    }
    return self;
}

-(void)configUI{
    _currentPage=0;
    
    _backgroundScrollView=[[UIScrollView alloc]initWithFrame:CGRectMake(0, 0, listWidth, listHeight)];
//    _backgroundScrollView.bounces = NO;
    //    _backgroundScrollView.pagingEnabled = YES;//因?yàn)榉猪撌前腠摶蛘咦远x寬度猜拾,故不啟用
    _backgroundScrollView.delegate = self;
    _backgroundScrollView.userInteractionEnabled = YES;
    _backgroundScrollView.showsHorizontalScrollIndicator = NO;
    _backgroundScrollView.showsVerticalScrollIndicator = NO;
    [_backgroundScrollView setContentSize:CGSizeMake(scalWidth*self.imageArray.count+listWidth-scalWidth, _backgroundScrollView.frame.size.height)];
    [_backgroundScrollView setBackgroundColor:[UIColor colorWithRed:0.902 green:0.902 blue:0.902 alpha:1.000]];//加上顏色,讓你們看的更清楚
    [self addSubview:_backgroundScrollView];
    
    for (int i=0; i<self.imageArray.count; i++) {
        UIImageView *imageView=[[UIImageView alloc]initWithFrame:CGRectMake((listWidth-cellWidth)/2+i*scalWidth, 0, cellWidth, listHeight)];
        imageView.backgroundColor=[UIColor whiteColor];
        imageView.image=[UIImage imageNamed:self.imageArray[i]];
        imageView.layer.borderWidth=2;
        imageView.layer.borderColor=[UIColor purpleColor].CGColor;
        imageView.layer.cornerRadius=10;
        imageView.clipsToBounds=YES;
        imageView.contentMode=UIViewContentModeScaleAspectFill;
        [self.backgroundScrollView addSubview:imageView];
        [self.imageViewArray addObject:imageView];
        if (i<=scalCount) {
            imageView.transform= CGAffineTransformScale(CGAffineTransformIdentity, powf(allScal, i) ,powf(allScal, i));
        }else{
            imageView.transform= CGAffineTransformScale(CGAffineTransformIdentity, powf(allScal, scalCount) ,powf(allScal, scalCount));
        }
    }
    
}
#pragma mark - 時(shí)時(shí)滾動(dòng)縮放
-(void)scaleImageArrayIndex:(NSInteger)index scale:(CGFloat)scale leftScrool:(BOOL)leftScrool{
    
    if (leftScrool) {
        //往左滑動(dòng)時(shí)
        if (index>=self.imageViewArray.count||index<0) {
            return;
        }
        UIImageView *imageView=(UIImageView *)self.imageViewArray[index];
        CGFloat scalXY=1-(scale*(1-allScal));
        imageView.transform =CGAffineTransformScale(CGAffineTransformIdentity, scalXY, scalXY);
        for (int i=0; i<scalCount; i++) {
            //放大的右邊2個(gè)可見個(gè)數(shù)(scalCount)
            NSInteger currentIndex=index+i+1;
            if (currentIndex>=self.imageViewArray.count||currentIndex<0) {
                //                return;
            }else{
                UIImageView *imageView1=(UIImageView *)self.imageViewArray[currentIndex];
                CGFloat scalXY=(allScal+(scale*0.2))*powf(allScal, i);
                imageView1.transform= CGAffineTransformScale(CGAffineTransformIdentity,scalXY ,scalXY);
            }
            //縮小的左邊兩個(gè)
            NSInteger currentIndex2=index-i-1;
            if (currentIndex2>=self.imageViewArray.count||currentIndex2<0) {
                //                return;
            }else{
                UIImageView *imageView2=(UIImageView *)self.imageViewArray[currentIndex2];
                CGFloat scalXY2=allScal*((1-scale*(1-allScal)))*powf(allScal, i);
                imageView2.transform= CGAffineTransformScale(CGAffineTransformIdentity,scalXY2 ,scalXY2);
                
            }
            
            
        }
        
    }else{
        if (scale<0) {
            //處理最左邊時(shí)顽聂,滑動(dòng)縮放異常
            return;
        }
        if (index+1>=self.imageViewArray.count||index+1<0) {
            return;
        }
        UIImageView *imageView=(UIImageView *)self.imageViewArray[index+1];
        CGFloat scalXY=allScal+scale*(1-allScal);
        imageView.transform =CGAffineTransformScale(CGAffineTransformIdentity, scalXY, scalXY);
        
        for (int i=0; i<scalCount; i++) {
            //放大的左邊2個(gè)
            NSInteger currentIndex=index-i;
            if (currentIndex>=self.imageViewArray.count||currentIndex<0) {
                //                return;
            }else{
                UIImageView *imageView1=(UIImageView *)self.imageViewArray[currentIndex];
                CGFloat scalXY=(1-scale*(1-allScal))*powf(allScal, i);
                imageView1.transform= CGAffineTransformScale(CGAffineTransformIdentity,scalXY ,scalXY);
             
            }
            //縮小的右邊兩個(gè)
            NSInteger currentIndex2=index+i+2;
            if (currentIndex2>=self.imageViewArray.count||currentIndex2<0) {
                //                return;
            }else{
                UIImageView *imageView2=(UIImageView *)self.imageViewArray[currentIndex2];
                CGFloat scalXY2=allScal*((allScal+scale*(1-allScal)))*powf(allScal, i);
              
                imageView2.transform= CGAffineTransformScale(CGAffineTransformIdentity,scalXY2 ,scalXY2);
            }
        }
    }
    
}
//滾動(dòng)接收后刷新Frame
-(void)refreshScaleImageViewWithNOScaleIndex:(NSInteger)noScaleIndex{
    UIImageView *imageView=(UIImageView *)self.imageViewArray[noScaleIndex];
    imageView.transform= CGAffineTransformScale(CGAffineTransformIdentity, 1.0,1.0);
    for (int i=0; i<scalCount; i++) {
        NSInteger currentIndex=noScaleIndex+i+1;
        if (currentIndex>=self.imageViewArray.count||currentIndex<0) {
            //return;
        }else{
            //右邊+的View
            UIImageView *imageView1=(UIImageView *)self.imageViewArray[currentIndex];
       
            imageView1.transform= CGAffineTransformScale(CGAffineTransformIdentity, powf(allScal, i+1) ,powf(allScal, i+1));
            
        }
        NSInteger currentIndex2=noScaleIndex-i-1;
        if (currentIndex2>=self.imageViewArray.count||currentIndex2<0) {
            //return;
        }else{
            //左邊的
            UIImageView *imageView2=(UIImageView *)self.imageViewArray[currentIndex2];
       
            imageView2.transform= CGAffineTransformScale(CGAffineTransformIdentity, powf(allScal, i+1) ,powf(allScal, i+1));
        }
    }
    
}

static BOOL onlyOnePage=NO;//是否允許每次只翻一頁
#pragma mark - UIScrollViewDelegate
//該方法是拖拽將要停止時(shí)盯仪,不能放在已經(jīng)停止里面(控制自定義翻頁寬度和頁面)
-(void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset{
    
    //MARK: 允許一下翻多頁
    //targetContentOffset 滾動(dòng)偏移量紊搪,左右回彈時(shí)是0
    CGFloat x = targetContentOffset->x;
    CGFloat pageWidth = scalWidth;//定義每頁寬度,翻頁時(shí)按照此規(guī)則來執(zhí)行
    CGFloat movedX = x - pageWidth * _currentPage;
    //計(jì)算偏移量是否在-0.5<x<0.5之間全景,超過了才翻頁,超過0.5-1.5 1.5-2.5
    if (movedX < -pageWidth * 0.5) {
        // Move left
        if (onlyOnePage) {
            _currentPage--;
        }else{
            _currentPage-=(int)ABS((movedX+pageWidth*0.5)/pageWidth)+1;//絕對(duì)值取整
        }
    } else if (movedX > pageWidth * 0.5) {
        // Move right
        if (onlyOnePage) {
            _currentPage++;
        }else{
            _currentPage+=(int)ABS((movedX-pageWidth*0.5)/pageWidth)+1;
        }
        
    }
    //滑動(dòng)的加速度 ABS取絕對(duì)值,不取整
    if (ABS(velocity.x) >= 2.0f){
        targetContentOffset->x = pageWidth * _currentPage;
    } else {
        targetContentOffset->x = scrollView.contentOffset.x;
        [scrollView setContentOffset:CGPointMake(pageWidth * _currentPage, scrollView.contentOffset.y) animated:YES];
    }
//    NSLog(@"將要停止頁面:%ld   頁面寬度:%f",_currentPage,pageWidth);
}
#pragma mark - scrollView delegate
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
    CGPoint scOffset=scrollView.contentOffset;
    NSInteger page=scOffset.x/(scalWidth);
//    NSLog(@"時(shí)時(shí)滑動(dòng):%f   當(dāng)前頁:%ld",scOffset.x ,page);

    CGFloat scale=((scOffset.x-page*scalWidth)/(scalWidth));
    if (scOffset.x>_currentPage*scalWidth) {//必須用_currentPage
        //往左滾動(dòng) 縮放從0-1
        [self scaleImageArrayIndex:page scale:scale leftScrool:YES];
    }else{
        //往右滾動(dòng) 縮放從1-0
        [self scaleImageArrayIndex:page scale:scale leftScrool:NO];
    }
}

-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
    //停止滑動(dòng)時(shí)爸黄,刷新控件位置
    [self refreshScaleImageViewWithNOScaleIndex:_currentPage];
}
-(void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView{
    //停止?jié)L動(dòng)時(shí)揭鳞,刷新控件位置
    [self refreshScaleImageViewWithNOScaleIndex:_currentPage];
}
#pragma mark - get set
-(void)setImageArray:(NSArray *)imageArray{
    if (self.imageArray!=imageArray) {
        _imageArray=nil;
    }
    _imageArray=[imageArray mutableCopy];
}
-(NSMutableArray *)imageViewArray{
    if (_imageViewArray==nil) {
        _imageViewArray=[[NSMutableArray alloc]init];
    }
    return _imageViewArray;
}
@end
2.UICollectionView實(shí)現(xiàn)重疊縮放滾動(dòng)翻頁
/*
    用來布局縮放重疊的庫(參考:https://github.com/Tuberose621/-CollectionViewLayout-CollectionViewFlowLayout-)
 *  在這個(gè)庫的基礎(chǔ)上修改部分的
 *
 *
 *
 */


#import <UIKit/UIKit.h>

@interface FanScalCollectionViewFlowLayout : UICollectionViewFlowLayout

@property (nonatomic, assign) NSInteger page;//當(dāng)前居中的頁碼
//@property (nonatomic, assign) BOOL isScal;//是否縮放,默認(rèn)yes
@property (nonatomic, assign) BOOL isOverlap;//是否重疊梆奈,默認(rèn)YES

@end


#import "FanScalCollectionViewFlowLayout.h"

@implementation FanScalCollectionViewFlowLayout
- (instancetype)init
{
    if (self = [super init]) {
//        _isScal=YES;
        _isOverlap=YES;
    }
    return self;
}

/**
 * 當(dāng)collectionView的顯示范圍發(fā)生改變的時(shí)候,是否需要重新刷新布局
 * 一旦重新刷新布局鉴裹,就會(huì)重新調(diào)用下面的方法:
 1.prepareLayout
 2.layoutAttributesForElementsInRect:方法
 */
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds
{
    return YES;
}
/**
 * 用來做布局的初始化操作(不建議在init方法中進(jìn)行布局的初始化操作)
 */
- (void)prepareLayout
{
    [super prepareLayout];
    //    self.visibleCount = 7;
    // 水平滾動(dòng)
    self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
    // 設(shè)置內(nèi)邊距
    CGFloat inset = (self.collectionView.frame.size.width - self.itemSize.width) * 0.5;
    self.sectionInset = UIEdgeInsetsMake(0, inset, 0, inset);
}

/**
 UICollectionViewLayoutAttributes *attrs;
 1.一個(gè)cell對(duì)應(yīng)一個(gè)UICollectionViewLayoutAttributes對(duì)象
 2.UICollectionViewLayoutAttributes對(duì)象決定了cell的frame
 */
/**
 * 這個(gè)方法的返回值是一個(gè)數(shù)組(數(shù)組里面存放著rect范圍內(nèi)所有元素的布局屬性)
 * 這個(gè)方法的返回值決定了rect范圍內(nèi)所有元素的排布(frame)
 */
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
{
    //增加可見區(qū)域,處理移動(dòng)位置径荔,造成循環(huán)創(chuàng)建時(shí)閃現(xiàn)
    rect.size.width+=self.collectionView.frame.size.width;
    rect.origin.x-=self.collectionView.frame.size.width * 0.5;
    // 獲得super已經(jīng)計(jì)算好的布局屬性
    NSArray *array = [super layoutAttributesForElementsInRect:rect] ;
    // 計(jì)算collectionView最中心點(diǎn)的x值
    CGFloat centerX = self.collectionView.contentOffset.x + self.collectionView.frame.size.width * 0.5;
    
    //獲取當(dāng)前頁碼
    //    NSInteger currentPage=self.collectionView.contentOffset.x/self.itemSize.width;
    //    NSLog(@"page:%ld   ===   %f",currentPage, centerX);
    
    // 在原有布局屬性的基礎(chǔ)上督禽,進(jìn)行微調(diào)
    for (int i=0; i<array.count; i++) {
        UICollectionViewLayoutAttributes *attrs=array[i];
        // cell的中心點(diǎn)x 和 collectionView最中心點(diǎn)的x值 的間距
        CGFloat delta = ABS(attrs.center.x - centerX);
        CGFloat zf=1.0f;
        if (attrs.center.x - centerX<0) {
            zf*=-1.0f;
        }
        // 根據(jù)間距值 計(jì)算 cell的縮放比例(這個(gè)是根據(jù)cell離中心點(diǎn)距離多少然后處理縮放倍數(shù))
        CGFloat scale = 1 - (delta/self.collectionView.frame.size.width)/2.0;
//        NSLog(@"%f",scale);
        // 設(shè)置縮放比例
        attrs.transform = CGAffineTransformMakeScale(scale, scale);
        if (_isOverlap) {
            //必須四舍五入总处,處理有不到1個(gè)像素的誤差
            attrs.zIndex=(NSInteger)roundf(-ABS(centerX-attrs.center.x)/self.itemSize.width);
            //這里一個(gè)重點(diǎn)就是距離遠(yuǎn)近是一個(gè)曲線函數(shù)狈惫,我用平方,剛好差不多胧谈,實(shí)際項(xiàng)目如果展示更多個(gè)的話們可以修改這個(gè)函數(shù)
            attrs.center=CGPointMake(attrs.center.x-zf*(1-scale)*self.itemSize.width*powf(1+(1-scale), 2), attrs.center.y);
          
        }
        
    }
    return array;
}

/**
 * 這個(gè)方法需要返回indexPath位置對(duì)應(yīng)cell的布局屬性,(好像添加cell時(shí)會(huì)調(diào)用這個(gè)方法,不過加入zIndex后,影響動(dòng)畫效果)
 */
//- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath
//{
//    UICollectionViewLayoutAttributes *attrs = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
////    attrs.zIndex=-1;
//    return attrs;
//}


/**
 * 這個(gè)方法的返回值荸频,就決定了collectionView停止?jié)L動(dòng)時(shí)的偏移量
 
 */
- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity
{
    //計(jì)算出最終顯示的矩形框
    CGRect rect;
    rect.origin.y = 0;
    //proposedContentOffset滑動(dòng)偏移量
    rect.origin.x = proposedContentOffset.x;
    rect.size = self.collectionView.frame.size;
    // 獲得super已經(jīng)計(jì)算好的布局屬性
    NSArray *array = [super layoutAttributesForElementsInRect:rect];
    // 計(jì)算collectionView最中心點(diǎn)的x值
    CGFloat centerX = proposedContentOffset.x + self.collectionView.frame.size.width * 0.5;
    //    UICollectionViewLayoutAttributes *attrs=array[0];
    //    NSLog(@"%f=======%f======%f",proposedContentOffset.x,attrs.center.x,self.collectionView.frame.size.width * 0.5);
    // 存放最小的間距值
    CGFloat minDelta = MAXFLOAT;
    for (UICollectionViewLayoutAttributes *attrs in array) {
        //        NSLog(@"1111111:%f",attrs.center.x);
        if (ABS(minDelta) > ABS(attrs.center.x - centerX)) {
            //            NSLog(@"=%f========:%f",attrs.center.x,ABS(attrs.center.x - centerX));
            //如果寬度150,大于75時(shí)旭从,會(huì)恢復(fù)到第二個(gè)cell
            minDelta = attrs.center.x - centerX;
            //            NSLog(@"--------:%f",minDelta);
        }
    }
    // 修改原有的偏移量 停止?jié)L動(dòng)時(shí),滾動(dòng)的偏移量再減回去和悦,恢復(fù)到一個(gè)居中的狀態(tài)
    proposedContentOffset.x += minDelta;
    //四舍五入解決小數(shù)點(diǎn)誤差問題
    _page=(NSInteger)roundf(proposedContentOffset.x/self.itemSize.width);
//    NSLog(@"結(jié)束滑動(dòng)時(shí):%ld   ==   %f",_page, proposedContentOffset.x);
    return proposedContentOffset;
}

@end



3.scrollView滾動(dòng)就是一個(gè)縮放的計(jì)算退疫,不過有個(gè)方法,可以自定義翻頁寬度,感覺很不錯(cuò)

static BOOL onlyOnePage=NO;//是否允許每次只翻一頁
#pragma mark - UIScrollViewDelegate
//該方法是拖拽將要停止時(shí)褒繁,不能放在已經(jīng)停止里面(控制自定義翻頁寬度和頁面)
-(void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset{
    
    //MARK: 允許一下翻多頁
    //targetContentOffset 滾動(dòng)偏移量,左右回彈時(shí)是0
    CGFloat x = targetContentOffset->x;
    CGFloat pageWidth = scalWidth;//定義每頁寬度馍忽,翻頁時(shí)按照此規(guī)則來執(zhí)行
    CGFloat movedX = x - pageWidth * _currentPage;
    //計(jì)算偏移量是否在-0.5<x<0.5之間,超過了才翻頁,超過0.5-1.5 1.5-2.5
    if (movedX < -pageWidth * 0.5) {
        // Move left
        if (onlyOnePage) {
            _currentPage--;
        }else{
            _currentPage-=(int)ABS((movedX+pageWidth*0.5)/pageWidth)+1;//絕對(duì)值取整
        }
    } else if (movedX > pageWidth * 0.5) {
        // Move right
        if (onlyOnePage) {
            _currentPage++;
        }else{
            _currentPage+=(int)ABS((movedX-pageWidth*0.5)/pageWidth)+1;
        }
        
    }
    //滑動(dòng)的加速度 ABS取絕對(duì)值舵匾,不取整
    if (ABS(velocity.x) >= 2.0f){
        targetContentOffset->x = pageWidth * _currentPage;
    } else {
        targetContentOffset->x = scrollView.contentOffset.x;
        [scrollView setContentOffset:CGPointMake(pageWidth * _currentPage, scrollView.contentOffset.y) animated:YES];
    }
//    NSLog(@"將要停止頁面:%ld   頁面寬度:%f",_currentPage,pageWidth);
}

Like(喜歡)

有問題請(qǐng)直接在文章下面留言,喜歡就給個(gè)Star(小星星)吧俊抵!

Email:fqsyfan@gmail.com

Email:fanxiangyang_heda@163.com

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末坐梯,一起剝皮案震驚了整個(gè)濱河市徽诲,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌谎替,老刑警劉巖偷溺,帶你破解...
    沈念sama閱讀 216,324評(píng)論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件钱贯,死亡現(xiàn)場(chǎng)離奇詭異挫掏,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)秩命,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來弃锐,“玉大人袄友,你說我怎么就攤上這事霹菊【珧迹” “怎么了?”我有些...
    開封第一講書人閱讀 162,328評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵鸠按,是天一觀的道長。 經(jīng)常有香客問我饶碘,道長目尖,這世上最難降的妖魔是什么熊镣? 我笑而不...
    開封第一講書人閱讀 58,147評(píng)論 1 292
  • 正文 為了忘掉前任卑雁,我火速辦了婚禮绪囱,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘莹捡。我一直安慰自己鬼吵,他們只是感情好篮赢,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,160評(píng)論 6 388
  • 文/花漫 我一把揭開白布齿椅。 她就那樣靜靜地躺著启泣,像睡著了一般涣脚。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上寥茫,一...
    開封第一講書人閱讀 51,115評(píng)論 1 296
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼芭梯。 笑死险耀,一個(gè)胖子當(dāng)著我的面吹牛玖喘,可吹牛的內(nèi)容都是我干的甩牺。 我是一名探鬼主播,決...
    沈念sama閱讀 40,025評(píng)論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼贬派,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了澎媒?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,867評(píng)論 0 274
  • 序言:老撾萬榮一對(duì)情侶失蹤旱幼,失蹤者是張志新(化名)和其女友劉穎查描,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體冬三,經(jīng)...
    沈念sama閱讀 45,307評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,528評(píng)論 2 332
  • 正文 我和宋清朗相戀三年缘缚,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片桥滨。...
    茶點(diǎn)故事閱讀 39,688評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡窝爪,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出蒲每,到底是詐尸還是另有隱情,我是刑警寧澤喻括,帶...
    沈念sama閱讀 35,409評(píng)論 5 343
  • 正文 年R本政府宣布邀杏,位于F島的核電站唬血,受9級(jí)特大地震影響望蜡,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜脖律,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,001評(píng)論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望腕侄。 院中可真熱鬧小泉,春花似錦、人聲如沸膏孟。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽弊决。三九已至,卻和暖如春魁淳,著一層夾襖步出監(jiān)牢的瞬間飘诗,已是汗流浹背界逛。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評(píng)論 1 268
  • 我被黑心中介騙來泰國打工昆稿, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人溉潭。 一個(gè)月前我還...
    沈念sama閱讀 47,685評(píng)論 2 368
  • 正文 我出身青樓,卻偏偏與公主長得像少欺,于是被迫代替她去往敵國和親喳瓣。 傳聞我的和親對(duì)象是個(gè)殘疾皇子赞别,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,573評(píng)論 2 353

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

  • 1畏陕、通過CocoaPods安裝項(xiàng)目名稱項(xiàng)目信息 AFNetworking網(wǎng)絡(luò)請(qǐng)求組件 FMDB本地?cái)?shù)據(jù)庫組件 SD...
    陽明先生_X自主閱讀 15,979評(píng)論 3 119
  • 用到的組件 1仿滔、通過CocoaPods安裝 2惠毁、第三方類庫安裝 3、第三方服務(wù) 友盟社會(huì)化分享組件 友盟用戶反饋 ...
    SunnyLeong閱讀 14,613評(píng)論 1 180
  • 歲月 你別催 不該背的黑鍋我不背 盡管沒人告訴我這是為什么 歲月 你別催 該來的一定都會(huì)來到 盡管需要需要一些時(shí)間...
    魚湯拌飯閱讀 229評(píng)論 0 4
  • 昨天有個(gè)今日頭條的銷售小伙約著跟我談業(yè)務(wù)实昨,問我下午是否方便洞豁,我給了一個(gè)家附近的咖啡館地址荒给,我說可以,你下午上地鐵的...
    靈魂有趣的總舵主閱讀 246評(píng)論 0 2
  • 說點(diǎn)什么吧刁卜。 2017考研成績(jī)出來很多天了,一直沒有提筆蛔趴,因?yàn)閼小?總分239挑辆。數(shù)學(xué)錯(cuò)6,邏輯1或2,寫作36或3...
    寶劍與高跟鞋閱讀 415評(píng)論 0 1