Guest User

Untitled

a guest
Jan 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. UIStoryboard *storyBoard = self.storyboard;
  2. IDEditListVC *editVC =
  3. [storyBoard instantiateViewControllerWithIdentifier:@"editlist"];
  4. editVC.list = _list;
  5. UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController: editVC];
  6. [self presentModalViewController:nav animated:YES];
  7.  
  8. self.textView.text = listText;
  9. float listHeight = self.textView.contentSize.height;
  10. NSLog(@"listHeight%f",listHeight);
Add Comment
Please, Sign In to add comment