i have to view controllers .. and i want to pass data from the first to the second view i have this code
for the ViewController.h
  #import <UIKit/UIKit.h>
  #import "SecondView.h"
  @interface ViewController : UIViewController{
      SecondView *secondviewData;
      IBOutlet UITextField *textfield;
  }
  @property (nonatomic,retain) SecondView *secondviewData;
  -(IBAction)passdata:(id)sender;
  @end
for the viewController.m
  #import "ViewController.h"
  #import "SecondView.h"
  @interface ViewController ()
  @end
  @implementation ViewController
  @synthesize secondviewData;
  -(IBAction)passdata:(id)sender{
      SecondView *second= [[SecondView alloc] initWithNibName:nil bundle:nil];
      self.secondviewData=second;
      secondviewData.passedValue=textfield.text;
     [self presentModalViewController:second animated:YES];
  }
  - (void)viewDidLoad
  {
      [super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
  }
  - (void)didReceiveMemoryWarning
  {
      [super didReceiveMemoryWarning];
      // Dispose of any resources that can be recreated.
  }
  @end
for the second view controller which is SecondView.h
  #import <UIKit/UIKit.h>
  @interface SecondView : UIViewController{
      IBOutlet UILabel *label;
      NSString *passedValue;
  }
  @property (nonatomic,retain) NSString *passedValue;
  -(IBAction)back:(id)sender;
  @end
for the SecondView.m
  #import "SecondView.h"
  #import "ViewController.h"
  @interface SecondView ()
  @end
  @implementation SecondView
  @synthesize passedValue;
  -(IBAction)back:(id)sender{
      ViewController *vc= [[ViewController alloc] initWithNibName:nil bundle:nil];
     [self presentModalViewController:vc animated:YES];
  }
  - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
  {
      self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
      if (self) {
    // Custom initialization
      }
      return self;
  }
  - (void)viewDidLoad
  {
      label.text=passedValue;
      [super viewDidLoad];
      // Do any additional setup after loading the view.
  }
  - (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
the error I'm having is presentModalViewController deprecated iOS 6 in these 2 lines
     [self presentModalViewController:vc animated:YES];
     [self presentModalViewController:vc animated:YES];
and when i run it and click on the button it will stop working and displays a blank black page
 
     
     
     
    