我有TabBarController,有3个标签。在我的.m
文件中,我有2个属性。
@property (strong, nonatomic) NSMutableArray *ingredientItems; //array to store ingredient items entered
@property (strong, nonatomic) NSMutableArray *directionsItems; //array to store direction items entered
我转到“成分”选项卡并添加几个值。我可以在日志中看到它们。 ingredientItems.count=2
然后我切换到另一个标签指示。现在是ingredientItems is nil
为什么会这样?