事半功倍的静态TableView(Static TableView)视频教程

Coming Soon

起因

在IOS开发中可能遇到设置页面,个人主页这样静态的TableView。我刚开始接手我们公司项目的时候遇到了这样的代码弄的我很头疼。

AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
   UITableViewCell *cell;
   if (indexPath.section == 0){
       cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
       if (indexPath.row == 0) {
           cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
           UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 15)];
           title.text = @"基本信息";
           title.font = [UIFont systemFontOfSize:14];
           title.textColor = SummaryColor;
           cell.contentView.backgroundColor = BackColor;
           [title sizeToFit];
           [title setFrame:CGRectMake(appDelegate.rootController.view.frame.size.width/2-title.frame.size.width/2, 15, title.frame.size.width, title.frame.size.height)];
           [cell.contentView addSubview:title];
       }
       else if (indexPath.row == 1) {
           if ([[[User currentUser] objectForKey:@"has_avatar"] boolValue]) {
               NZCircularImageView *avatarView = [[NZCircularImageView alloc] initWithFrame:CGRectMake(7.5, 7.5, 45, 45)];
               [avatarView sd_setImageWithURL:[NSURL URLWithString:[[User currentUser] objectForKey:@"medium_avatar_url"]] placeholderImage:[UIImage imageNamed:@"medium_avatar.png"] options:SDWebImageCacheMemoryOnly];
               cell.accessoryView = avatarView;
               cell.textLabel.text = @"头像";
               cell.textLabel.textColor = SummaryColor;
               cell.textLabel.font = [UIFont systemFontOfSize:14];
           }
           else{
               cell.detailTextLabel.text = @"未设置";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"#FF8831"];
               cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
               cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
               cell.textLabel.text = @"头像";
               cell.textLabel.textColor = SummaryColor;
               cell.textLabel.font = [UIFont systemFontOfSize:14];
           }
       }
       else if (indexPath.row == 2) {
           cell.textLabel.text = @"姓名";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           cell.detailTextLabel.text = NULL_TO_Blank([[User currentUser] objectForKey:@"name"]);
           cell.detailTextLabel.textColor = SharingColor;
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
       else if (indexPath.row == 3) {
           cell.textLabel.text = @"手机";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           if ([[[User currentUser] objectForKey:@"phone"] isEqual:[NSNull null]]) {
               cell.detailTextLabel.text = @"未设置";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
               
           }else {
               cell.detailTextLabel.text = [[User currentUser] objectForKey:@"phone"];
               cell.detailTextLabel.textColor = SharingColor;
           }
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
       else if (indexPath.row == 4) {
           cell.textLabel.text = @"电子邮件";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           NSString *email = [NSString stringWithFormat:@"%@",[[User currentUser] objectForKey:@"email"]];
           if (email.length > 0) {
               cell.detailTextLabel.text = [[User currentUser] objectForKey:@"email"];
               cell.detailTextLabel.textColor = SharingColor;
               if ([[[User currentUser] objectForKey:@"pending_reconfirmation"] boolValue]) {
                   UILabel *notice = [[UILabel alloc] initWithFrame:CGRectMake(appDelegate.rootController.view.frame.size.width - 160-23, 30, 160, 9)];
                   notice.font = [UIFont systemFontOfSize:9];
                   notice.text = @"(地址未确认,请点击确认邮件中的链接)";
                   notice.textColor = [UIColor colorWithHexString:@"EE4747"];
                   [cell addSubview:notice];
               }
           }else {
               cell.detailTextLabel.text = @"未设置";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
           }
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
       else if (indexPath.row == 5) {
           NSString *email = [NSString stringWithFormat:@"%@",[[User currentUser] objectForKey:@"email"]];
           if ((![[User currentPhone] isEqual:[NSNull null]]) || ([email length] > 1 && ![[[User currentUser] objectForKey:@"pending_reconfirmation"] boolValue])) {
               cell.textLabel.text = @"密码";
               cell.textLabel.textColor = SummaryColor;
               cell.textLabel.font = [UIFont systemFontOfSize:14];
               if ([[[User currentUser] objectForKey:@"password"] boolValue]) {
                   cell.detailTextLabel.text = @"修改";
                   cell.detailTextLabel.textColor = SharingColor;
                   cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
                   cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

               } else {
                   cell.detailTextLabel.text = @"未设置";
                   cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
                   cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
                   cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
               }
           }
           else {
               
           }
       }
       else if (indexPath.row == 6) {
           cell.textLabel.text = @"性别";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           
           if ([[[User currentUser] objectForKey:@"gender"] intValue] == 0) {
               cell.detailTextLabel.text = @"男";
           }
           else if ([[[User currentUser] objectForKey:@"gender"] intValue] == 1){
               cell.detailTextLabel.text = @"女";
           }
           cell.detailTextLabel.textColor = SharingColor;
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
       else if (indexPath.row == 7) {
           cell.textLabel.text = @"生日";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           NSString *key = [[User currentUser] objectForKey:@"birthday"];
           if ([key isEqual:[NSNull null]]) {
               cell.detailTextLabel.text = @"未填写";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
           }else {
               cell.detailTextLabel.text = [NSString stringWithFormat:@"%@", [[User currentUser] objectForKey:@"birthday"]];
               cell.detailTextLabel.textColor = SharingColor;
           }
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
       else if (indexPath.row == 8) {
           cell.textLabel.text = @"所在地";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
         
           if ([[[User currentUser] objectForKey:@"location"] length] < 1) {
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
               cell.detailTextLabel.text = @"未填写";
           }else{
               cell.detailTextLabel.text = [[User currentUser] objectForKey:@"location"];
           }
           cell.detailTextLabel.textColor = SharingColor;
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
       else if (indexPath.row == 9) {
           cell.textLabel.text = @"行业方向";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           if ([[[User currentUser] objectForKey:@"areas"] count] < 1) {
               cell.detailTextLabel.text = @"未填写";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
           }else {
               //cell.detailTextLabel.text = [[[User currentUser] objectForKey:@"areas"] componentsJoinedByString:@","];
               NSString *areasStr = [[User currentUser][@"areas"] firstObject];
               NSString *rolesStr = [[User currentUser][@"roles"] firstObject];
               cell.detailTextLabel.text = [NSString stringWithFormat:@"%@/%@",areasStr,rolesStr];
               cell.detailTextLabel.textColor = SharingColor;
           }
           
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
       else if (indexPath.row == 10) {
           cell.textLabel.text = @"相关领域的经验";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           if ([[[User currentUser] objectForKey:@"experience"] isEqual:[NSNull null]]) {
               cell.detailTextLabel.text = @"未填写";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
               
           }else {
               cell.detailTextLabel.text = [[User currentUser] objectForKey:@"experience"];
               cell.detailTextLabel.textColor = SharingColor;
           }
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
       else if (indexPath.row == 11) {
           cell.textLabel.text = @"一句话个人简介";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           if ([[[User currentUser] objectForKey:@"headline"] isEqual:[NSNull null]] || [[[User currentUser] objectForKey:@"headline"] length] < 1) {
               cell.detailTextLabel.text = @"未填写";
               cell.detailTextLabel.textColor = WorkShopColor;
               
           }else {
               cell.detailTextLabel.text = [[User currentUser] objectForKey:@"headline"];
               cell.detailTextLabel.textColor = SharingColor;
           }
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }

   }
   else if (indexPath.section == 1) {
       if (indexPath.row == 0) {
           cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
           UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 15)];
           title.text = @"合伙需求";
           title.font = [UIFont systemFontOfSize:14];
           title.textColor = SummaryColor;
           cell.contentView.backgroundColor = BackColor;
           [title sizeToFit];
           [title setFrame:CGRectMake(appDelegate.rootController.view.frame.size.width/2-title.frame.size.width/2, 15, title.frame.size.width, title.frame.size.height)];
           [cell.contentView addSubview:title];
       }
       else if (indexPath.row == 1) {
           cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
           CGFloat height = [Helpers heightForString:[NSString stringWithFormat:@"%@\n", [_user objectForKey:@"bio"]] font:[UIFont systemFontOfSize:12] width:appDelegate.rootController.view.frame.size.width - 20 - 35];
           UITextView *title = [[UITextView alloc] initWithFrame:CGRectMake(20, 5, appDelegate.rootController.view.frame.size.width - 20 - 35, height)];
           title.textColor = SharingColor;
           title.editable = NO;
           title.userInteractionEnabled = NO;
           title.font = [UIFont systemFontOfSize:14];
           if ([[[User currentUser] objectForKey:@"bio"] isEqual:[NSNull null]]) {
               title.text = @"未填写";
               title.textColor = WorkShopColor;
           }else {
               title.text = [[User currentUser] objectForKey:@"bio"];
           }
           [title sizeToFit];
           cell.frame = CGRectMake(0, 0, appDelegate.rootController.view.frame.size.width, 5 + title.frame.size.height);
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
           [cell.contentView addSubview:title];
       }
   }
   else if (indexPath.section == 2){
       if (indexPath.row == 0) {
           cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
           UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 15)];
           title.text = @"创业信息";
           cell.contentView.backgroundColor = BackColor;
           title.font = [UIFont systemFontOfSize:14];
           title.textColor = SummaryColor;
           [title sizeToFit];
           [title setFrame:CGRectMake(appDelegate.rootController.view.frame.size.width/2-title.frame.size.width/2, 15, title.frame.size.width, title.frame.size.height)];
           [cell.contentView addSubview:title];
       }
       
       else if (indexPath.row == 1){
           cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
           cell.textLabel.text = @"创业状态";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           if ([[[User currentUser] objectForKey:@"status"] isEqual:[NSNull null]]) {
               cell.detailTextLabel.text = @"未填写";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
               
           }else {
               cell.detailTextLabel.text = [[User currentUser] objectForKey:@"status"];
               cell.detailTextLabel.textColor = SharingColor;
           }
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
       else if (indexPath.row == 2){
           cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
           cell.textLabel.text = @"可投入资金";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           if ([[[User currentUser] objectForKey:@"money"] isEqual:[NSNull null]]) {
               cell.detailTextLabel.text = @"未填写";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
               
           }else {
               cell.detailTextLabel.text = [[User currentUser] objectForKey:@"money"];
               cell.detailTextLabel.textColor = SharingColor;
           }
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
       else if (indexPath.row == 3){
           cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
           cell.textLabel.text = @"可投入时间";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           if ([[[User currentUser] objectForKey:@"time"] isEqual:[NSNull null]]) {
               cell.detailTextLabel.text = @"未填写";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
               
           }else {
               cell.detailTextLabel.text = [[User currentUser] objectForKey:@"time"];
               cell.detailTextLabel.textColor = SharingColor;
           }
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
   }
   else if (indexPath.section == 3){
       cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
       if (indexPath.row == 0){
           UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 15)];
           title.text = @"工作和教育经历";
           cell.contentView.backgroundColor = BackColor;
           title.font = [UIFont systemFontOfSize:14];
           title.textColor = SummaryColor;
           [title sizeToFit];
           [title setFrame:CGRectMake(appDelegate.rootController.view.frame.size.width/2-title.frame.size.width/2, 15, title.frame.size.width, title.frame.size.height)];
           [cell.contentView addSubview:title];
       }
       else if (indexPath.row == 1){
           cell.textLabel.text = @"工作经历";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           NSArray *workInfo = [[User currentResume] objectForKey:@"professional_experiences"];
           if ([workInfo count] > 1) {
               cell.detailTextLabel.text = [NSString stringWithFormat:@"%@等%lu段工作经历",[[workInfo firstObject] objectForKey:@"company"], (unsigned long)[workInfo count]];
               cell.detailTextLabel.textColor = SharingColor;
           }
           else if ([workInfo count] == 1) {
               cell.detailTextLabel.text = [NSString stringWithFormat:@"%@", [[workInfo firstObject] objectForKey:@"company"]];
               cell.detailTextLabel.textColor = SharingColor;
           }else if ([workInfo count] == 0) {
               cell.detailTextLabel.text = @"未设置";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
           }
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
           
       }
       else if (indexPath.row == 2){
           cell.textLabel.text = @"教育经历";
           cell.textLabel.textColor = SummaryColor;
           cell.textLabel.font = [UIFont systemFontOfSize:14];
           NSArray *eduInfo = [[User currentResume] objectForKey:@"educational_experiences"];
           if ([eduInfo count] > 1) {
               cell.detailTextLabel.text = [NSString stringWithFormat:@"%@等%lu段教育经历",[[eduInfo firstObject] objectForKey:@"school"], (unsigned long)[eduInfo count]];
               cell.detailTextLabel.textColor = SharingColor;
           }
           else if ([eduInfo count] == 1) {
               cell.detailTextLabel.text = [NSString stringWithFormat:@"%@", [[eduInfo firstObject] objectForKey:@"school"]];
               cell.detailTextLabel.textColor = SharingColor;
           }else if ([eduInfo count] == 0) {
               cell.detailTextLabel.text = @"未设置";
               cell.detailTextLabel.textColor = [UIColor colorWithHexString:@"00CD48"];
           }
           cell.detailTextLabel.font = [UIFont systemFontOfSize:14];
           cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
       }
   }
   else if (indexPath.section == 4) {
       if (indexPath.row == 0) {
           cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
           cell.detailTextLabel.text = @"修改";
           cell.detailTextLabel.font = [UIFont systemFontOfSize:12];
           cell.detailTextLabel.textColor = WorkShopColor;
           UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 15)];
           title.text = @"技能标签";
           cell.contentView.backgroundColor = BackColor;
           title.font = [UIFont systemFontOfSize:14];
           title.textColor = SummaryColor;
           [title sizeToFit];
           [title setFrame:CGRectMake(appDelegate.rootController.view.frame.size.width/2-title.frame.size.width/2, 15, title.frame.size.width, title.frame.size.height)];
           [cell.contentView addSubview:title];
       }
       else if (indexPath.row == 1) {
           cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ProfileSettingsCellIdentifier];
           [self addSkillLabelOnCell:cell];
       }
       
   }
   
   cell.selectionStyle = UITableViewCellSelectionStyleNone;
   
   return cell;

为了让大家一起痛苦我把所有的代码都贴出来了,有一句话怎么说来着,老太太的裹脚布又臭又长。我看了代码打算用静态TableView进行重写。痛苦啊!太痛苦了!

Static TableView的使用

  1. 在StoryBoard中拖入TableViewController


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

推荐阅读更多精彩内容