ストーリーボードを使用してiPhoneアプリを実装しました
私のアプリでは *膿ではなく、あるビューから別のビューにビューを表示する必要があります。
2 番目のビューのストーリー ボード xib に画面を作成しました。
私set up the connection for button in the first view to the second view with 'present
は押しません。
今i need to populate an array to the second view which was presented
、私は次の方法を試しましたが、うまくいきません
1:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(UIButton *)sender
{
//Populate detail to BuyView mail page
if ([segue.id
entifier isEqualToString:@"BuyView"])
{
BuyViewController *destViewController = segue.destinationViewController;
destViewController.itemDetailsArray = [_itemDetailsArray objectAtIndex:sender.tag] ;
}
}
2:
- (IBAction)buyItemClick:(UIButton *)sender
{
BuyViewController *destViewController = [[BuyViewController alloc] init];
destViewController.itemDetailsArray = [_itemDetailsArray objectAtIndex:sender.tag] ;
}