简易的双折线图实现

折线图能用到的地方并不是太多,这儿测试了一个简单的双折线图,要用到的可以看看。

动态效果图


再看看iphone5和7的效果图


如果是新手可以再看看我在里面用到的简单适配

因为设置坐标地方不多,适配比较简单,

#define H [UIScreen

mainScreen].bounds.size.height /667

#define W [UIScreen

mainScreen].bounds.size.width /375

分别在横向坐标数字上乘以宏定义W,纵坐标上乘以宏定义H,如下

LineView* zx = [[LineViewalloc]initWithFrame:CGRectMake(0,300*W,[UIScreenmainScreen].bounds.size.width,350*H)];

就可以达到简单的适配,是不是很简单~

接下来进入正题

首先先建一个UIview类,然后在ViewController里导入UIview

的头文件,初始化view.add到self.view,

ViewController的.m如下

//  Copyright © 2016年RanFeiHong. All rights reserved.折线图能用到的地方并不是太多,这儿测试了一个简单的双折线图,要用到的可以看看。

首先先建一个UIview类,然后在ViewController里导入UIview

的头文件,初始化view.add到self.view,

ViewController的.m如下

//  Copyright © 2016年RanFeiHong. All rights reserved.

//

#import"ViewController.h"

#import"LineView.h"

#define H [UIScreen

mainScreen].bounds.size.height /667

#define W [UIScreen

mainScreen].bounds.size.width /375

@interfaceViewController ()

@end

@implementationViewController

- (void)viewDidLoad{

[superviewDidLoad];

[superviewDidLoad];

self.view.backgroundColor

= [UIColorwhiteColor];

LineView* zx = [[LineViewalloc]initWithFrame:CGRectMake(0,300*W, [UIScreenmainScreen].bounds.size.width,350*H)];

//横纵坐标赋值

zx.horizontalDateArray=@[@"1d",@"2d",@"3d",@"4d",@"5d",@"6d",@"7d",@"8d",@"9d"];

zx.verticalDateArray=@[@"400",@"300",@"200",@"100",@"0"];

//背景颜色

zx.gradientLayerColors= [NSMutableArrayarrayWithArray:@[(__bridgeid)[UIColorcolorWithRed:23/255.0green:155/255.0blue:255/255.0alpha:1.0].CGColor, (__bridgeid)[UIColorcolorWithRed:10/255.0green:240/55.0blue:244/255.0alpha:1.0].CGColor]];

//设置折线颜色

zx.lineColorArray=@[ [UIColorcolorWithRed:28 /255.0green:70 /255.0blue:140 /255.0alpha:1.0],[UIColorcolorWithRed:133 /255.0green:1 /255.0blue:113 /255.0alpha:1.0]];

//设置折线的数据源

zx.dataArray=@[@[@(183),@(235),@(160),@(208),@(116),@(163),@(206),@(168),@(234)],

@[@(236),@(160),@(218),@(166),@(256),@(172),@(271),@(188),@(216)]];

//设置line名称

zx.lineNameArray =@[@"吸收",@"消耗"];

[self.viewaddSubview:zx];

}

@end

在新建的UIview类的.h里是各个属性控件和数据数组如下

//  Copyright ©

2016年RanFeiHong. All rights reserved.

//

#import

@interfaceLineView :UIView

@property

(nonatomic,strong)NSArray* dataArray;

@property(nonatomic,strong)NSArray* horizontalDateArray;

@property(nonatomic,strong)NSArray* verticalDateArray;

@property(nonatomic,strong)NSMutableArray*gradientLayerColors;

@property

(nonatomic,strong)UIColor* LineColor;

@property

(nonatomic,strong)NSArray* lineColorArray;

@property

(nonatomic,strong)NSArray* lineNameArray;

@property

(nonatomic,strong)UIBezierPath* path1;

@property(nonatomic,strong)UIView*gradientBackgroundView;

@property

(nonatomic,strong)CAGradientLayer*gradientLayer;

@property(nonatomic,strong)NSMutableArray* lineChartLayerArray;

- (instancetype)initWithFrame:(CGRect)frame;

- (void)dravLine;

- (void)line;

@end

然后在.m里建立X轴数据,写一个方法在里面画折线图,创建折线点和加上标记label。

.m如下

//  Copyright ©

2016年RanFeiHong. All rights reserved.

//

#import"LineView.h"

@implementationLineView

- (instancetype)initWithFrame:(CGRect)frame{

if(self= [superinitWithFrame:frame]){

self.backgroundColor= [UIColorwhiteColor];

self.lineChartLayerArray = [NSMutableArrayarray];

}

returnself;

}

- (void)setHorizontalDateArray:(NSArray*)horizontalDateArray{

_horizontalDateArray= horizontalDateArray;

[selfcreateLabelX];

}

- (void)setVerticalDateArray:(NSArray*)verticalDateArray{

_verticalDateArray= verticalDateArray;

}

- (void)setGradientLayerColors:(NSMutableArray*)gradientLayerColors{

_gradientLayerColors= gradientLayerColors;

[selfdrawGradientBackgroundView];

}

#pragma mark创建下标的颜色标记

- (void)setLineColorArray:(NSArray*)lineColorArray{

_lineColorArray= lineColorArray;

for(NSIntegeri =0; i < lineColorArray.count; i++) {

UIButton* btn = [UIButtonbuttonWithType:UIButtonTypeCustom];

btn.frame=CGRectMake((20+80*i),self.frame.size.height-13,15,15);

btn.backgroundColor= lineColorArray[i];

btn.tag=666+i;

[btn addTarget:selfaction:@selector(btnClict:)forControlEvents:UIControlEventTouchUpInside];

[selfaddSubview:btn];

}

}

- (void)setLineNameArray:(NSArray*)lineNameArray{

_lineNameArray= lineNameArray;

for(NSIntegeri =0; i < lineNameArray.count; i++) {

UIButton* btn = (UIButton*)[selfviewWithTag:666+ i];

UILabel* nameLabel = [[UILabelalloc]initWithFrame:CGRectMake(CGRectGetMaxX(btn.frame)+3,self.frame.size.height-15,2.0*30,18)];

nameLabel.text=self.lineNameArray[i];

nameLabel.font= [UIFontsystemFontOfSize:13.0];

[selfaddSubview:nameLabel];

}

}

- (void)btnClict:(UIButton*)btn{

for(NSIntegerlineNumber =0; lineNumber

for(NSIntegeri =0; i

UILabel* label = (UILabel*)[selfviewWithTag:3000*(lineNumber+1) + i];

if(lineNumber == btn.tag-666) {

label.hidden= !label.hidden;

}

}

CAShapeLayer*lineChartLayer =self.lineChartLayerArray[lineNumber];

if(lineNumber == btn.tag-666) {

lineChartLayer.hidden=!lineChartLayer.hidden;

}

}

}

- (void)drawRect:(CGRect)rect{

[selfline];

}

#pragma mark创建x轴的数据

- (void)createLabelX{

CGFloatmonth =self.horizontalDateArray.count;

for(NSIntegeri =0; i

CGFloatwidthlable = (self.frame.size.width-30)/month-5;

CGFloatheightlable = widthlable/2;

UILabel* LabelMonth = [[UILabelalloc]initWithFrame:CGRectMake((self.frame.size.width-30)/month* i +15,self.frame.size.height-60+heightlable*0.5, widthlable *0.6, heightlable)];

LabelMonth.tag=1000+ i;

LabelMonth.text=self.horizontalDateArray[i];

LabelMonth.font= [UIFontsystemFontOfSize:10];

[selfaddSubview:LabelMonth];

}

}

- (void)drawGradientBackgroundView{

self.gradientBackgroundView= [[UIViewalloc]initWithFrame:CGRectMake(15,0,self.bounds.size.width-30,self.bounds.size.height-60)];

[selfaddSubview:self.gradientBackgroundView];

self.gradientLayer= [CAGradientLayerlayer];

self.gradientLayer.colors=self.gradientLayerColors;

[self.gradientBackgroundView.layeraddSublayer:self.gradientLayer];

}

- (void)line

{

[selfdravLine];

for(NSIntegeri =0; i

CAShapeLayer*lineChartLayer =self.lineChartLayerArray[i];

lineChartLayer.lineWidth=1;

CABasicAnimation *pathAnimation = [CABasicAnimationanimationWithKeyPath:@"strokeEnd"];

pathAnimation.duration=2;

pathAnimation.repeatCount=1;

pathAnimation.removedOnCompletion=YES;

pathAnimation.fromValue= [NSNumbernumberWithFloat:0.0f];

pathAnimation.toValue= [NSNumbernumberWithFloat:1.0f];

[lineChartLayeraddAnimation:pathAnimationforKey:@"strokeEnd"];

}

}

#pragma mark画折线图

- (void)dravLine{

CGFloatMaxY ;

CGFloatfirstdate = [[NSStringstringWithFormat:@"%@",self.verticalDateArray[0]]floatValue];

CGFloatlastdate = [[NSStringstringWithFormat:@"%@",[self.verticalDateArraylastObject]]floatValue];

MaxY = firstdate -lastdate;

for(NSIntegerLineNumber =0; LineNumber <2; LineNumber++){

UILabel* label = (UILabel*)[selfviewWithTag:1000];

UIBezierPath* path = [[UIBezierPathalloc]init];

path.lineWidth=1.0;

UIColor* color = [UIColorgreenColor];

[colorset];

NSArray*array =self.dataArray[LineNumber];

CGFloatarc1 = [[NSStringstringWithFormat:@"%@",array[0]]floatValue];

[pathmoveToPoint:CGPointMake(label.frame.origin.x-15, (MaxY-arc1 + lastdate) /MaxY * (self.frame.size.height-60)  )];

//创建折现点标记

for(NSIntegeri =1; i

UILabel* label1 = (UILabel*)[selfviewWithTag:1000+ i];

NSArray*array =self.dataArray[LineNumber];

CGFloatarc =[[NSStringstringWithFormat:@"%@",array[i]]floatValue];

[pathaddLineToPoint:CGPointMake(label1.frame.origin.x-30,  (MaxY -arc + lastdate) /MaxY * (self.frame.size.height-60) )];

UILabel* falglabel = [[UILabelalloc]initWithFrame:CGRectMake(label1.frame.origin.x-15, (MaxY-arc +lastdate) /MaxY * (self.frame.size.height-60)  ,40,20)];

falglabel.tag=3000* (LineNumber )+ i;

falglabel.text= [NSStringstringWithFormat:@"%.1f",arc];

falglabel.font= [UIFontsystemFontOfSize:11.0];

falglabel.textColor=self.lineColorArray[LineNumber];

[selfaddSubview:falglabel];

}

CAShapeLayer*lineChartLayer = [CAShapeLayerlayer];

lineChartLayer.path= path.CGPath;

UIColor* linecolors = (UIColor*)self.lineColorArray[LineNumber];

lineChartLayer.strokeColor= linecolors.CGColor;

lineChartLayer.fillColor= [[UIColorclearColor]CGColor];

lineChartLayer.lineWidth=5;

lineChartLayer.lineCap=kCALineCapRound;

lineChartLayer.lineJoin=kCALineJoinRound;

[self.lineChartLayerArrayaddObject:lineChartLayer];

[self.gradientBackgroundView.layeraddSublayer:lineChartLayer];

}

}

@end

下面是iphone5和7的效果图

如果是新手可以再看看我在里面用到的简单适配

因为设置坐标地方不多,适配比较简单,

#define H [UIScreen

mainScreen].bounds.size.height /667

#define W [UIScreen

mainScreen].bounds.size.width /375

分别在横向坐标数字上乘以宏定义W,纵坐标上乘以宏定义H,如下

LineView* zx = [[LineViewalloc]initWithFrame:CGRectMake(0,300*W,[UIScreenmainScreen].bounds.size.width,350*H)];

就可以达到简单的适配,是不是很简单~

//

#import"ViewController.h"

#import"LineView.h"

#define H [UIScreen

mainScreen].bounds.size.height /667

#define W [UIScreen

mainScreen].bounds.size.width /375

@interfaceViewController ()

@end

@implementationViewController

- (void)viewDidLoad{

[superviewDidLoad];

[superviewDidLoad];

self.view.backgroundColor

= [UIColorwhiteColor];

LineView* zx = [[LineViewalloc]initWithFrame:CGRectMake(0,300*W, [UIScreenmainScreen].bounds.size.width,350*H)];

//横纵坐标赋值

zx.horizontalDateArray=@[@"1d",@"2d",@"3d",@"4d",@"5d",@"6d",@"7d",@"8d",@"9d"];

zx.verticalDateArray=@[@"400",@"300",@"200",@"100",@"0"];

//背景颜色

zx.gradientLayerColors= [NSMutableArrayarrayWithArray:@[(__bridgeid)[UIColorcolorWithRed:23/255.0green:155/255.0blue:255/255.0alpha:1.0].CGColor, (__bridgeid)[UIColorcolorWithRed:10/255.0green:240/55.0blue:244/255.0alpha:1.0].CGColor]];

//设置折线颜色

zx.lineColorArray=@[ [UIColorcolorWithRed:28 /255.0green:70 /255.0blue:140 /255.0alpha:1.0],[UIColorcolorWithRed:133 /255.0green:1 /255.0blue:113 /255.0alpha:1.0]];

//设置折线的数据源

zx.dataArray=@[@[@(183),@(235),@(160),@(208),@(116),@(163),@(206),@(168),@(234)],

@[@(236),@(160),@(218),@(166),@(256),@(172),@(271),@(188),@(216)]];

//设置line名称

zx.lineNameArray =@[@"吸收",@"消耗"];

[self.viewaddSubview:zx];

}

@end

在新建的UIview类的.h里是各个属性控件和数据数组如下

//  Copyright ©

2016年RanFeiHong. All rights reserved.

//

#import

@interfaceLineView :UIView

@property

(nonatomic,strong)NSArray* dataArray;

@property(nonatomic,strong)NSArray* horizontalDateArray;

@property(nonatomic,strong)NSArray* verticalDateArray;

@property(nonatomic,strong)NSMutableArray*gradientLayerColors;

@property

(nonatomic,strong)UIColor* LineColor;

@property

(nonatomic,strong)NSArray* lineColorArray;

@property

(nonatomic,strong)NSArray* lineNameArray;

@property

(nonatomic,strong)UIBezierPath* path1;

@property(nonatomic,strong)UIView*gradientBackgroundView;

@property

(nonatomic,strong)CAGradientLayer*gradientLayer;

@property(nonatomic,strong)NSMutableArray* lineChartLayerArray;

- (instancetype)initWithFrame:(CGRect)frame;

- (void)dravLine;

- (void)line;

@end

然后在.m里建立X轴数据,写一个方法在里面画折线图,创建折线点和加上标记label。

.m如下

//  Copyright ©

2016年RanFeiHong. All rights reserved.

//

#import"LineView.h"

@implementationLineView

- (instancetype)initWithFrame:(CGRect)frame{

if(self= [superinitWithFrame:frame]){

self.backgroundColor= [UIColorwhiteColor];

self.lineChartLayerArray = [NSMutableArrayarray];

}

returnself;

}

- (void)setHorizontalDateArray:(NSArray*)horizontalDateArray{

_horizontalDateArray= horizontalDateArray;

[selfcreateLabelX];

}

- (void)setVerticalDateArray:(NSArray*)verticalDateArray{

_verticalDateArray= verticalDateArray;

}

- (void)setGradientLayerColors:(NSMutableArray*)gradientLayerColors{

_gradientLayerColors= gradientLayerColors;

[selfdrawGradientBackgroundView];

}

#pragma mark创建下标的颜色标记

- (void)setLineColorArray:(NSArray*)lineColorArray{

_lineColorArray= lineColorArray;

for(NSIntegeri =0; i < lineColorArray.count; i++) {

UIButton* btn = [UIButtonbuttonWithType:UIButtonTypeCustom];

btn.frame=CGRectMake((20+80*i),self.frame.size.height-13,15,15);

btn.backgroundColor= lineColorArray[i];

btn.tag=666+i;

[btn addTarget:selfaction:@selector(btnClict:)forControlEvents:UIControlEventTouchUpInside];

[selfaddSubview:btn];

}

}

- (void)setLineNameArray:(NSArray*)lineNameArray{

_lineNameArray= lineNameArray;

for(NSIntegeri =0; i < lineNameArray.count; i++) {

UIButton* btn = (UIButton*)[selfviewWithTag:666+ i];

UILabel* nameLabel = [[UILabelalloc]initWithFrame:CGRectMake(CGRectGetMaxX(btn.frame)+3,self.frame.size.height-15,2.0*30,18)];

nameLabel.text=self.lineNameArray[i];

nameLabel.font= [UIFontsystemFontOfSize:13.0];

[selfaddSubview:nameLabel];

}

}

- (void)btnClict:(UIButton*)btn{

for(NSIntegerlineNumber =0; lineNumber

for(NSIntegeri =0; i

UILabel* label = (UILabel*)[selfviewWithTag:3000*(lineNumber+1) + i];

if(lineNumber == btn.tag-666) {

label.hidden= !label.hidden;

}

}

CAShapeLayer*lineChartLayer =self.lineChartLayerArray[lineNumber];

if(lineNumber == btn.tag-666) {

lineChartLayer.hidden=!lineChartLayer.hidden;

}

}

}

- (void)drawRect:(CGRect)rect{

[selfline];

}

#pragma mark创建x轴的数据

- (void)createLabelX{

CGFloatmonth =self.horizontalDateArray.count;

for(NSIntegeri =0; i

CGFloatwidthlable = (self.frame.size.width-30)/month-5;

CGFloatheightlable = widthlable/2;

UILabel* LabelMonth = [[UILabelalloc]initWithFrame:CGRectMake((self.frame.size.width-30)/month* i +15,self.frame.size.height-60+heightlable*0.5, widthlable *0.6, heightlable)];

LabelMonth.tag=1000+ i;

LabelMonth.text=self.horizontalDateArray[i];

LabelMonth.font= [UIFontsystemFontOfSize:10];

[selfaddSubview:LabelMonth];

}

}

- (void)drawGradientBackgroundView{

self.gradientBackgroundView= [[UIViewalloc]initWithFrame:CGRectMake(15,0,self.bounds.size.width-30,self.bounds.size.height-60)];

[selfaddSubview:self.gradientBackgroundView];

self.gradientLayer= [CAGradientLayerlayer];

self.gradientLayer.colors=self.gradientLayerColors;

[self.gradientBackgroundView.layeraddSublayer:self.gradientLayer];

}

- (void)line

{

[selfdravLine];

for(NSIntegeri =0; i

CAShapeLayer*lineChartLayer =self.lineChartLayerArray[i];

lineChartLayer.lineWidth=1;

CABasicAnimation *pathAnimation = [CABasicAnimationanimationWithKeyPath:@"strokeEnd"];

pathAnimation.duration=2;

pathAnimation.repeatCount=1;

pathAnimation.removedOnCompletion=YES;

pathAnimation.fromValue= [NSNumbernumberWithFloat:0.0f];

pathAnimation.toValue= [NSNumbernumberWithFloat:1.0f];

[lineChartLayeraddAnimation:pathAnimationforKey:@"strokeEnd"];

}

}

#pragma mark画折线图

- (void)dravLine{

CGFloatMaxY ;

CGFloatfirstdate = [[NSStringstringWithFormat:@"%@",self.verticalDateArray[0]]floatValue];

CGFloatlastdate = [[NSStringstringWithFormat:@"%@",[self.verticalDateArraylastObject]]floatValue];

MaxY = firstdate -lastdate;

for(NSIntegerLineNumber =0; LineNumber <2; LineNumber++){

UILabel* label = (UILabel*)[selfviewWithTag:1000];

UIBezierPath* path = [[UIBezierPathalloc]init];

path.lineWidth=1.0;

UIColor* color = [UIColorgreenColor];

[colorset];

NSArray*array =self.dataArray[LineNumber];

CGFloatarc1 = [[NSStringstringWithFormat:@"%@",array[0]]floatValue];

[pathmoveToPoint:CGPointMake(label.frame.origin.x-15, (MaxY-arc1 + lastdate) /MaxY * (self.frame.size.height-60)  )];

//创建折现点标记

for(NSIntegeri =1; i

UILabel* label1 = (UILabel*)[selfviewWithTag:1000+ i];

NSArray*array =self.dataArray[LineNumber];

CGFloatarc =[[NSStringstringWithFormat:@"%@",array[i]]floatValue];

[pathaddLineToPoint:CGPointMake(label1.frame.origin.x-30,  (MaxY -arc + lastdate) /MaxY * (self.frame.size.height-60) )];

UILabel* falglabel = [[UILabelalloc]initWithFrame:CGRectMake(label1.frame.origin.x-15, (MaxY-arc +lastdate) /MaxY * (self.frame.size.height-60)  ,40,20)];

falglabel.tag=3000* (LineNumber )+ i;

falglabel.text= [NSStringstringWithFormat:@"%.1f",arc];

falglabel.font= [UIFontsystemFontOfSize:11.0];

falglabel.textColor=self.lineColorArray[LineNumber];

[selfaddSubview:falglabel];

}

CAShapeLayer*lineChartLayer = [CAShapeLayerlayer];

lineChartLayer.path= path.CGPath;

UIColor* linecolors = (UIColor*)self.lineColorArray[LineNumber];

lineChartLayer.strokeColor= linecolors.CGColor;

lineChartLayer.fillColor= [[UIColorclearColor]CGColor];

lineChartLayer.lineWidth=5;

lineChartLayer.lineCap=kCALineCapRound;

lineChartLayer.lineJoin=kCALineJoinRound;

[self.lineChartLayerArrayaddObject:lineChartLayer];

[self.gradientBackgroundView.layeraddSublayer:lineChartLayer];

}

}

@end

失误之处请大家多多指正。

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

推荐阅读更多精彩内容