快遞查詢物流

以下為主要代碼

#import@interface FirstViewController : UIViewController

{

UIButton *yunda;

UIButton *ems;

UIButton *yuantong;

UIButton *shentong;

UIButton *more;

UIButton *shunfeng;

UIButton *tiantian;

}

- (void)select;

@end

#import "FirstViewController.h"

#import "SecondViewController.h"

#import "OtherViewController.h"

@interface FirstViewController ()

@end

@implementation FirstViewController

-(void)loadView{

[super loadView];

UIColor *testColor= [UIColor colorWithRed:150/255.0 green:200/255.0 blue:255/255.0 alpha:1];

self.view.backgroundColor = testColor;

[self select];

}

- (void)select{

yunda = [[UIButton alloc]initWithFrame:CGRectMake(30, 100, 140, 50)];

//? ? yunda=[UIButton buttonWithType:UIButtonTypeCustom];

[yunda setBackgroundImage:[UIImage imageNamed:@"yunda"] forState:UIControlStateNormal];

[yunda setTag:1];

[yunda addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:yunda];

ems = [[UIButton alloc]initWithFrame:CGRectMake(205, 100, 140, 50)];

[ems setBackgroundImage:[UIImage imageNamed:@"EMS"] forState:UIControlStateNormal];

[ems setTag:2];

[ems addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:ems];

//圓通

yuantong = [[UIButton alloc]initWithFrame:CGRectMake(30, 195, 140, 50)];

[yuantong setBackgroundImage:[UIImage imageNamed:@"yuantong"] forState:UIControlStateNormal];

[yuantong setTag:3];

[yuantong addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:yuantong];

//申通

shentong = [[UIButton alloc]initWithFrame:CGRectMake(205, 195, 140, 50)];

[shentong setBackgroundImage:[UIImage imageNamed:@"shentong"] forState:UIControlStateNormal];

[shentong setTag:4];

[shentong addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:shentong];

//順豐

shunfeng = [[UIButton alloc]initWithFrame:CGRectMake(30, 280, 140, 50)];

[shunfeng setBackgroundImage:[UIImage imageNamed:@"shunfeng"] forState:UIControlStateNormal];

[shunfeng setTag:5];

[shunfeng addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:shunfeng];

//天天

tiantian = [[UIButton alloc]initWithFrame:CGRectMake(205, 280, 140, 50)];

[tiantian setBackgroundImage:[UIImage imageNamed:@"tiantian"] forState:UIControlStateNormal];

[tiantian setTag:6];

[tiantian addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:tiantian];

more = [[UIButton alloc]initWithFrame:CGRectMake(35, 380, 300, 60)];

[more setBackgroundColor:[UIColor greenColor]];

[more setTitle:@"更多快遞..." forState:UIControlStateNormal];

[more setTag:7];

[more addTarget:self action:@selector(clickTwo:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:more];

}

- (void)click:(UIButton *)buton{

SecondViewController *viewScend = [[SecondViewController alloc] init];

viewScend.title = @"查詢";

switch ([buton tag]) {

case 1:

[viewScend companyName:@"yunda" withChinese:@"韻達(dá)快遞"];

break;

case 2:

[viewScend companyName:@"ems" withChinese:@"EMS"];

break;

case 3:

[viewScend companyName:@"yuantong" withChinese:@"圓通快遞"];

break;

case 4:

[viewScend companyName:@"shentong" withChinese:@"申通快遞"];

break;

case 5:

[viewScend companyName:@"shunfeng" withChinese:@"順豐快遞"];

break;

case 6:

[viewScend companyName:@"tiantian" withChinese:@"天天快遞"];

break;

}

[self.navigationController pushViewController:viewScend animated:YES];

}

- (void)clickTwo:(UIButton *)button{

OtherViewController *viewOfOther = [[OtherViewController alloc]init];

viewOfOther.title = @"其他快遞";

[self.navigationController pushViewController:viewOfOther animated:YES];

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

/*

#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

// Get the new view controller using [segue destinationViewController].

// Pass the selected object to the new view controller.

}

*/

@end

#import@interface SecondViewController : UIViewController

{

UITextField *setNumber;

UITextField *setName;

}

@property NSString *companyName;

- (void)companyName:(NSString *)name withChinese:(NSString *)chinese;

@end

#import "SecondViewController.h"

#import "ThirdViewController.h"

@interface SecondViewController ()

@end

@implementation SecondViewController

- (void)viewDidLoad {

[super viewDidLoad];

}

- (void)companyName:(NSString *)name withChinese:(NSString *)chinese{

NSLog(@"%@,%@",name,chinese);

self.companyName = name;

[self viewOfInput:name addChinese:chinese];

}

- (void)viewOfInput:(NSString *)comName addChinese:cName{

UILabel *name=[[UILabel alloc]initWithFrame:CGRectMake(20, 150, 60, 50)];

[name setTextColor:[UIColor blackColor]];

[name setBackgroundColor:[UIColor clearColor]];

[name setText:@"公司名"];

UILabel *number=[[UILabel alloc]initWithFrame:CGRectMake(20, 200, 60, 50)];

[number setTextColor:[UIColor blackColor]];

[number setBackgroundColor:[UIColor clearColor]];

[number setText:@"運(yùn)單號(hào)"];

[self.view addSubview:name];

[self.view addSubview:number];

setName=[[UITextField alloc]initWithFrame:CGRectMake(80, 160,200, 30)];

[setName setBackgroundColor:[UIColor whiteColor]];

[setName setPlaceholder:@"輸入快遞名 如:yunda"];

[setName setText:cName];

[setName setTextColor:[UIColor grayColor]];

[setName setBorderStyle:UITextBorderStyleRoundedRect];

[setName setFont:[UIFont systemFontOfSize:18]];

[setName resignFirstResponder];

setName.delegate =(id)self;

setNumber=[[UITextField alloc]initWithFrame:CGRectMake(80,210, 200, 30)];

[setNumber setBackgroundColor:[UIColor whiteColor]];

[setNumber setPlaceholder:@"輸入運(yùn)單號(hào)"];

[setNumber setBorderStyle:UITextBorderStyleRoundedRect];

[setNumber setReturnKeyType:UIReturnKeyDone];

[setNumber setTextColor:[UIColor greenColor]];

[setNumber setFont:[UIFont systemFontOfSize:18]];

setNumber.delegate =(id)self;

[self.view addSubview:setNumber];

[self.view addSubview:setName];

UIColor *testColor= [UIColor colorWithRed:150/255.0 green:200/255.0 blue:255/255.0 alpha:1];

//查詢按鈕

UIButton *buttonOne = [UIButton buttonWithType:UIButtonTypeRoundedRect];

buttonOne.frame=CGRectMake(90, 260, 150, 50);

[buttonOne setBackgroundColor:testColor];

[buttonOne setTitle:@"查詢" forState:UIControlStateNormal];

buttonOne.titleLabel.font = [UIFont systemFontOfSize:20];

[buttonOne setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

[buttonOne addTarget:self action:@selector(clic:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:buttonOne];

}

-(void)resume{

[self.view setFrame:CGRectMake(0, 0, 320, 480)];

}

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{

[setName resignFirstResponder];

[setNumber resignFirstResponder];

}

#pragma mark texfiledDelegte

- (void)textFieldDidBeginEditing:(UITextField *)textField{

if (textField == setNumber) {

[self.view setFrame:CGRectMake(0, -40, 320, 480)];

}

}

- (BOOL)textFieldShouldReturn:(UITextField *)textField{

[textField resignFirstResponder];

[self resume];

return YES;

}

- (void)textFieldDidEndEditing:(UITextField *)textField{

[textField resignFirstResponder];

[self resume];

}

-(void)clic:(UIButton *)button{

ThirdViewController *viewThird = [[ThirdViewController alloc] init];

viewThird .view.backgroundColor=[UIColor greenColor];

[viewThird flashDataWithName:self.companyName withNumber:[setNumber text]];

viewThird.title = @"查詢結(jié)果";

[self.navigationController pushViewController:viewThird animated:YES];

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

/*

#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

// Get the new view controller using [segue destinationViewController].

// Pass the selected object to the new view controller.

}

*/

@end

#import@interface ThirdViewController : UIViewController

@property(nonatomic)NSMutableData *receiveData;

@property(nonatomic)NSURLRequest *request;

@property(nonatomic)UIColor *testColor;

@property(nonatomic)UILabel *lableWrong;

- (void)flashDataWithName:(NSString *)strName withNumber:(NSString *)strNum;

- (void)showInView:(NSArray *)dic;

@end

#import "ThirdViewController.h"

@interface ThirdViewController ()

@property NSMutableDictionary *array;

@end

@implementation ThirdViewController

- (void)viewDidLoad {

[super viewDidLoad];

// Do any additional setup after loading the view.

}

- (void)flashDataWithName:(NSString *)strName withNumber:(NSString *)strNum{

NSString *urlName = [[NSString alloc]init];

NSString *urltext = [[NSString alloc]init];

NSString *urlNum = [[NSString alloc]init];

NSLog(@"urlNum=%@",urlNum);

if(!(strName == urltext)){

urlName = [NSString stringWithFormat:@"?company=%@",strName];

}

if(!(strNum == urltext)){

urlNum = [NSString stringWithFormat:@"&id=%@",strNum];

}

NSString *strUrl = [NSString stringWithFormat:@"http://www.kuaidi100.com/query?type=%@&postid=%@",strName,strNum];

NSURL *urlOne = [NSURL URLWithString:strUrl];

self.request=[NSURLRequest requestWithURL:urlOne];

NSData*data=[NSData dataWithContentsOfURL:urlOne];

NSDictionary *Dict=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];

NSLog(@"%@",Dict);

NSURLSession *session=[NSURLSession sharedSession];

NSURLSessionDataTask *dataTask=[session dataTaskWithRequest:self.request

completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {

_array=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error];

if (error) {

NSLog(@"error:%@",error.description);

}

else

{

}

}];

[dataTask resume];

[self showInView:Dict[@"data"]];

}

#pragma mark - NSURLConnectionDataDelegate

//收到服務(wù)器回應(yīng)的時(shí)候調(diào)用此方法

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{

_receiveData=[NSMutableData alloc];

}

//接收到服務(wù)器傳輸數(shù)據(jù)的時(shí)候調(diào)用,此方法根據(jù)數(shù)據(jù)大小執(zhí)行若干次

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{

[_receiveData appendData:data];

}

//請(qǐng)求完之后調(diào)用

- (void)connectionDidFinishLoading:(NSURLConnection *)connection{

UIColor *testColor= [UIColor colorWithRed:150/255.0 green:200/255.0 blue:255/255.0 alpha:1];

_lableWrong = [[UILabel alloc]initWithFrame:CGRectMake(50, 150, 220, 100)];

[_lableWrong setTextAlignment:NSTextAlignmentCenter];

_lableWrong.backgroundColor = testColor;

_lableWrong.numberOfLines = 0;

NSLog(@"connectionDidFinishLoading");

NSString *infoString = [[NSString alloc]initWithData:_receiveData encoding:NSUTF8StringEncoding];

NSLog(@"返回的json數(shù)據(jù)為:%@",infoString);

//返回信息處理

if ([infoString isEqualToString:@"null"]) {

NSLog(@"查詢成功但運(yùn)單過(guò)期或沒(méi)有物流信息");

_lableWrong.text = @"查詢成功但運(yùn)單過(guò)期或沒(méi)有物流信息";

[self.view addSubview:_lableWrong];

}

else if([infoString isEqualToString:@"Param_Error"]){

NSLog(@"缺少參數(shù)");

_lableWrong.text = @"缺少參數(shù)";

[self.view addSubview:_lableWrong];

}

else if([infoString isEqualToString:@"Illegal_ID"]){

NSLog(@"運(yùn)單號(hào)或快遞公司編碼無(wú)效");

_lableWrong.text = @"運(yùn)單號(hào)或快遞公司編碼無(wú)效";

[self.view addSubview:_lableWrong];

}

else if([infoString isEqualToString:@"Server_Error"]){

NSLog(@"服務(wù)器錯(cuò)誤");

_lableWrong.text = @"運(yùn)單號(hào)或快遞公司編碼無(wú)效";

[self.view addSubview:_lableWrong];

}

else{

NSLog(@"成功");

NSArray *array = [NSJSONSerialization JSONObjectWithData:_receiveData options: NSJSONReadingAllowFragments? error:nil];

[self showInView:array];

}

}

- (void)showInView:(NSArray *)array{

int i=0;

for(NSDictionary *dic in array){

//lable顯示時(shí)間

UILabel *showTime = [[UILabel alloc]initWithFrame:CGRectMake(10, 65+i*30, 30, 15)];

showTime.font = [UIFont systemFontOfSize:10];

[showTime setTextColor:[UIColor redColor]];

[showTime setText:@"時(shí)間:"];

[self.view addSubview:showTime];

//lable顯示狀態(tài)

UILabel *showDetail = [[UILabel alloc]initWithFrame:CGRectMake(10, 80+i*30, 30, 15)];

showDetail.font = [UIFont systemFontOfSize:10];

[showDetail setTextColor:[UIColor greenColor]];

[showDetail setText:@"狀態(tài):"];

[self.view addSubview:showDetail];

//label顯示具體時(shí)間

showTime = [[UILabel alloc]initWithFrame:CGRectMake(40, 65+i*30, 280, 15)];

showTime.font = [UIFont systemFontOfSize:10];

[showTime setBackgroundColor:[UIColor redColor]];

[showTime setText:[dic objectForKey:@"Time"]];

[self.view addSubview:showTime];

//lable顯示具體狀態(tài)

showDetail = [[UILabel alloc]initWithFrame:CGRectMake(40, 80+i*30, 280, 15)];

showDetail.font = [UIFont systemFontOfSize:10];

[showDetail setBackgroundColor:[UIColor greenColor]];

[showDetail setText:[dic objectForKey:@"Detail"]];

[self.view addSubview:showDetail];

i++;

}

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

/*

#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

// Get the new view controller using [segue destinationViewController].

// Pass the selected object to the new view controller.

}

*/

@end

#import@interface OtherViewController : UIViewController

@end

#import "OtherViewController.h"

#import "SecondViewController.h"

@interface OtherViewController ()

@end

@implementation OtherViewController

- (void)viewDidLoad {

[super viewDidLoad];

UIColor *testColor= [UIColor colorWithRed:150/255.0 green:200/255.0 blue:255/255.0 alpha:1];

UILabel *A = [[UILabel alloc]initWithFrame:CGRectMake(20, 80, 10, 20)];

[A setText:@"A"];

[A setFont:[UIFont systemFontOfSize:10]];

[A setBackgroundColor:[UIColor greenColor]];

[self.view addSubview:A];

UIButton *anxinda = [[UIButton alloc]initWithFrame:CGRectMake(40, 80, 70, 20)];

[anxinda setTitle:@"安信達(dá)快遞" forState:UIControlStateNormal];

anxinda.titleLabel.font = [UIFont systemFontOfSize:10];

[anxinda setBackgroundColor:testColor];

[anxinda addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[anxinda setTag:1];

[self.view addSubview:anxinda];

UIButton *anjie = [[UIButton alloc]initWithFrame:CGRectMake(120, 80, 70, 20)];

[anjie setTitle:@"安捷快遞" forState:UIControlStateNormal];

anjie.titleLabel.font = [UIFont systemFontOfSize:10];

[anjie setBackgroundColor:testColor];

[anjie addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[anjie setTag:2];

[self.view addSubview:anjie];

UILabel *B = [[UILabel alloc]initWithFrame:CGRectMake(20, 110, 10, 20)];

[B setText:@"B"];

[B setFont:[UIFont systemFontOfSize:10]];

[B setBackgroundColor:[UIColor greenColor]];

[self.view addSubview:B];

UIButton *biaoji = [[UIButton alloc]initWithFrame:CGRectMake(40, 110, 70, 20)];

[biaoji setTitle:@"彪記快遞" forState:UIControlStateNormal];

biaoji.titleLabel.font = [UIFont systemFontOfSize:10];

[biaoji setBackgroundColor:testColor];

[biaoji addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[biaoji setTag:3];

[self.view addSubview:biaoji];

UIButton *bnt = [[UIButton alloc]initWithFrame:CGRectMake(120, 110, 70, 20)];

[bnt setTitle:@"BNT" forState:UIControlStateNormal];

bnt.titleLabel.font = [UIFont systemFontOfSize:10];

[bnt setBackgroundColor:testColor];

[bnt addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[bnt setTag:4];

[self.view addSubview:bnt];

UILabel *C? = [[UILabel alloc]initWithFrame:CGRectMake(20, 140,10, 20)];

[C? setText:@"C"];

[C setFont:[UIFont systemFontOfSize:10]];

[C setBackgroundColor:[UIColor greenColor]];

[self.view addSubview:C];

UIButton *coe = [[UIButton alloc]initWithFrame:CGRectMake(40, 140, 70, 20)];

[coe setTitle:@"COE" forState:UIControlStateNormal];

coe.titleLabel.font = [UIFont systemFontOfSize:10];

[coe setBackgroundColor:testColor];

[coe addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[coe setTag:5];

[self.view addSubview:coe];

UIButton *changyu = [[UIButton alloc]initWithFrame:CGRectMake(120, 140, 70, 20)];

[changyu setTitle:@"長(zhǎng)宇快遞" forState:UIControlStateNormal];

changyu.titleLabel.font = [UIFont systemFontOfSize:10];

[changyu setBackgroundColor:testColor];

[changyu addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[changyu setTag:6];

[self.view addSubview:changyu];

UILabel *Y? = [[UILabel alloc]initWithFrame:CGRectMake(20, 170, 10, 20)];

[Y? setText:@"Y"];

[Y setFont:[UIFont systemFontOfSize:10]];

[Y setBackgroundColor:[UIColor greenColor]];

[self.view addSubview:Y];

UIButton *yafeng = [[UIButton alloc]initWithFrame:CGRectMake(40, 170, 50, 20)];

[yafeng setTitle:@"亞風(fēng)快遞" forState:UIControlStateNormal];

yafeng.titleLabel.font = [UIFont systemFontOfSize:10];

[yafeng setBackgroundColor:testColor];

[yafeng addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[yafeng setTag:7];

[self.view addSubview:yafeng];

UIButton *yousu = [[UIButton alloc]initWithFrame:CGRectMake(110, 170, 50, 20)];

[yousu setTitle:@"優(yōu)速快遞" forState:UIControlStateNormal];

yousu.titleLabel.font = [UIFont systemFontOfSize:10];

[yousu setBackgroundColor:testColor];

[yousu addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[yousu setTag:8];

[self.view addSubview:yousu];

UIButton *other = [[UIButton alloc]initWithFrame:CGRectMake(30, 380, 300, 60)];

[other setTitle:@"其他快遞" forState:UIControlStateNormal];

[other setBackgroundColor:testColor];

[other addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[other setTag:100];

[self.view addSubview:other];

}

- (void)click:(UIButton *)button

{

SecondViewController *viewScend = [[SecondViewController alloc] init];

viewScend.title = @"查詢";

switch ([button tag]) {

case 1:

[viewScend companyName:@"anxinda" withChinese:@"安信達(dá)快遞"];

break;

case 2:

[viewScend companyName:@"anjie" withChinese:@"安捷快遞"];

break;

case 3:

[viewScend companyName:@"biaoji" withChinese:@"彪記快遞"];

break;

case 4:

[viewScend companyName:@"bnt" withChinese:@"BNT"];

break;

case 5:

[viewScend companyName:@"coe" withChinese:@"COE"];

break;

case 6:

[viewScend companyName:@"changyu" withChinese:@"長(zhǎng)宇快遞"];

break;

case 7:

[viewScend companyName:@"yafeng" withChinese:@"亞風(fēng)快遞"];

break;

case 8:

[viewScend companyName:@"yousu" withChinese:@"優(yōu)速快遞"];

break;

case 100:

[viewScend companyName:@"" withChinese:@""];

break;

}

[self.navigationController pushViewController:viewScend animated:YES];

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

/*

#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

// Get the new view controller using [segue destinationViewController].

// Pass the selected object to the new view controller.

}

*/

@end

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 229,237評(píng)論 6 537
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 98,957評(píng)論 3 423
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人,你說(shuō)我怎么就攤上這事。” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 177,248評(píng)論 0 382
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我,道長(zhǎng),這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 63,356評(píng)論 1 316
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 72,081評(píng)論 6 410
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 55,485評(píng)論 1 324
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,534評(píng)論 3 444
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 42,720評(píng)論 0 289
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 49,263評(píng)論 1 335
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 41,025評(píng)論 3 356
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 43,204評(píng)論 1 371
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,787評(píng)論 5 362
  • 正文 年R本政府宣布,位于F島的核電站,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 44,461評(píng)論 3 347
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 34,874評(píng)論 0 28
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 36,105評(píng)論 1 289
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 51,945評(píng)論 3 395
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 48,205評(píng)論 2 375

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