Hello all, I'm new into xcode and I'm working on an application for my company.
I am building up an array with an key name and key value.
For exampe ( PHP like, cus its easier to explain)
$myArray = array (
'Person1' => 'Operator',
'Person2' => 'Customer',
'Person3' => 'Owner'
);
Now I found some snippet and after working around I got an window (up from code)
Now is my question. This 1 window. I would like to duplicate for amount of items in my array.
So for each 'person' I want to make exact same window.
I hope someone can help me out with this.
I am building up an array with an key name and key value.
For exampe ( PHP like, cus its easier to explain)
$myArray = array (
'Person1' => 'Operator',
'Person2' => 'Customer',
'Person3' => 'Owner'
);
Now I found some snippet and after working around I got an window (up from code)
Now is my question. This 1 window. I would like to duplicate for amount of items in my array.
So for each 'person' I want to make exact same window.
I hope someone can help me out with this.