As the question states, is it possible to disable userInteracion
within a UICollectionViewCell
?
I know the code is to disable the view would be: self.view.userInteractionEnabled = NO;
in the .m file.
I have a button inside a Cell and I'm wondering if during the action of this button I could disable the entire View until the action is done (action: saving an image).
Any thoughts would be appreciated!
Note: Cell has its own class. Inside the button with its action method.