美文网首页
使用Storyboard进行界面跳转及传值

使用Storyboard进行界面跳转及传值

作者: UILabelkell | 来源:发表于2018-03-12 17:01 被阅读4次
    • (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
      {
      self.model = [self.dataSource objectAtIndex:indexPath.row];
      [self performSegueWithIdentifier:@"DetailsVc" sender:@{@"taskid":self.model.taskid,@"titel":_model.taskname}];
      }

    • (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
      {
      if ([segue.destinationViewController isKindOfClass:[AssignmentDetailsVC class]]) {
      AssignmentDetailsVC *vc = segue.destinationViewController;
      vc.taskid = sender[@"taskid"];
      vc.titeltext = sender[@"titel"];
      }
      NSLog(@"%s---%@",func,sender);
      }

    相关文章

      网友评论

          本文标题:使用Storyboard进行界面跳转及传值

          本文链接:https://www.haomeiwen.com/subject/jmxofftx.html