Advertisement
01010harshad_vaghela

Untitled

Apr 17th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  2. {
  3.  
  4.  
  5. if ([[segue identifier] isEqualToString:@"reply"])
  6. {
  7. reply *rply=[[reply alloc]initWithNibName:@"reply" bundle:nil];
  8.  
  9. [rply performSegueWithIdentifier:@"reply" sender:self];
  10. NSIndexPath *indexPath = [self.tableview indexPathForSelectedRow];
  11.  
  12. // [self performSegueWithIdentifier:@"Reply" sender:self];
  13. rply=segue.destinationViewController;
  14. rply.getdata=[mycall objectAtIndex:indexPath.row];
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement