I have a master detail Application in xCode.
In Master View Controller an Array is defined.
In Detail View Controller there are detail Informations according to one entry from this array.
Is it possible to get access from Detail View Controller to the array and update them?
How can I pass the reference to the array from the Master View Controller to the Detail View Controller?
Put a property in your detail controller to hold the array. Then pass the array reference in whatever method you use now for passing the single entry, either didSelectRowAtIndexPath: for a xib-based app or prepareForSegue: if you have a storyboard.