Passing data between classes using Objective-C

后端 未结 4 717
时光取名叫无心
时光取名叫无心 2020-12-18 13:01

I need some info about how to pass data between classes.. To be specific, I want to store in a class in an array some info, (using model store class), and then use it in ano

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-18 13:46

    You can do like:

    For example: you want to pass Array from FirstViewController to SecondViewController.

    Create Array in SecondViewController first and define it as property as in SecondViewController.h:

    NSMutableArray *secondArr;
    @property (nonatomic, retain) NSMutableArray *secondArr;
    

    In SecondViewController.m:

    @synthesize secondArr;
    

    Then, for example, you want to pass Array when a button in FirstViewController is touched. In its action (create IBAction, link it with the button's touchesUpInside), you can set it to get the instance of your second view controller, for example:

    secondViewController.secondArr = firstArr;
    

提交回复
热议问题