So, I have a viewController, updatingIdentifiers, with a few textfields - all of which have a connected button, which puts the text from the textfield into a label (all in the same viewcontroller).
When you click to "Open this diary" and proceed to the next viewcontroller, you enter a UICollectionViewController, yourDiary. Each cell that the user creates in here, holds a couple of edible labels/textfield - but also holds a few labels, that should always have the text from the labels in the previous viewController, updatingIdentifiers.
So how do I set the labels in the UICollectionViewCells to have the data from the previous viewController's labels?
I tried storing the data from the labels in a seperate class, DiaryIdentifiers (NSObject), but I still couldn't find out how to access this data in the UICollectionViewController's code?
I'm pretty new in programming - and also don't if I should enter my code or a screenshots of my code here or if this will just be confusing?
Please let me know if pieces of the code will make it easier to help me! :)
Thanks a lot!
Anton